vm: 'qemu-image' uses the native partitioning tools and bootloader.
* gnu/system/vm.scm (qemu-image): Use #+ for Parted, the bootloader, etc.master
parent
b347723445
commit
96cb3f8a29
|
@ -345,7 +345,7 @@ system that is passed to 'populate-root-file-system'."
|
||||||
(setlocale LC_ALL "en_US.utf8")
|
(setlocale LC_ALL "en_US.utf8")
|
||||||
|
|
||||||
(let ((inputs
|
(let ((inputs
|
||||||
'#$(append (list parted e2fsprogs dosfstools)
|
'#+(append (list parted e2fsprogs dosfstools)
|
||||||
(map canonical-package
|
(map canonical-package
|
||||||
(list sed grep coreutils findutils gawk))))
|
(list sed grep coreutils findutils gawk))))
|
||||||
|
|
||||||
|
@ -422,12 +422,12 @@ system that is passed to 'populate-root-file-system'."
|
||||||
#:partitions partitions
|
#:partitions partitions
|
||||||
#:grub-efi grub-efi
|
#:grub-efi grub-efi
|
||||||
#:bootloader-package
|
#:bootloader-package
|
||||||
#$(bootloader-package bootloader)
|
#+(bootloader-package bootloader)
|
||||||
#:bootcfg #$bootcfg-drv
|
#:bootcfg #$bootcfg-drv
|
||||||
#:bootcfg-location
|
#:bootcfg-location
|
||||||
#$(bootloader-configuration-file bootloader)
|
#$(bootloader-configuration-file bootloader)
|
||||||
#:bootloader-installer
|
#:bootloader-installer
|
||||||
#$(bootloader-installer bootloader)))))))
|
#+(bootloader-installer bootloader)))))))
|
||||||
#:system system
|
#:system system
|
||||||
#:make-disk-image? #t
|
#:make-disk-image? #t
|
||||||
#:disk-image-size disk-image-size
|
#:disk-image-size disk-image-size
|
||||||
|
|
Reference in New Issue