diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-03-19 22:53:48 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-24 23:06:11 +0100 |
commit | 132823c2acd34f46d6df89ce3635db62643a09c8 (patch) | |
tree | 4b356e8495723524fea63f852d00aa0eacf82276 /gnu/system/vm.scm | |
parent | 598757e038ab5dea3b59c9c248a2ad860c41fe62 (diff) | |
download | guix-132823c2acd34f46d6df89ce3635db62643a09c8.tar guix-132823c2acd34f46d6df89ce3635db62643a09c8.tar.gz |
vm: 'virtualized-operating-system' inherits from the user's bootloader config.
* gnu/system/vm.scm (virtualized-operating-system): Inherit from the
bootloader of OS.
Diffstat (limited to 'gnu/system/vm.scm')
-rw-r--r-- | gnu/system/vm.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 55cddb1a4b..5068cb3068 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -790,6 +790,7 @@ environment with the store shared with the host. MAPPINGS is a list of ;; force the traditional i386/BIOS method. ;; See <https://bugs.gnu.org/28768>. (bootloader (bootloader-configuration + (inherit (operating-system-bootloader os)) (bootloader grub-bootloader) (target "/dev/vda"))) |