summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system/vm.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index 60a41584d05..00c6f0fe380 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -283,7 +283,8 @@ substitutable."
283 bootloader 283 bootloader
284 (register-closures? (has-guix-service-type? os)) 284 (register-closures? (has-guix-service-type? os))
285 (inputs '()) 285 (inputs '())
286 (grub-mkrescue-environment '())) 286 (grub-mkrescue-environment '())
287 (substitutable? #t))
287 "Return a bootable, stand-alone iso9660 image. 288 "Return a bootable, stand-alone iso9660 image.
288 289
289INPUTS is a list of inputs (as for packages)." 290INPUTS is a list of inputs (as for packages)."
@@ -354,6 +355,7 @@ INPUTS is a list of inputs (as for packages)."
354 #:make-disk-image? #f 355 #:make-disk-image? #f
355 #:single-file-output? #t 356 #:single-file-output? #t
356 #:references-graphs inputs 357 #:references-graphs inputs
358 #:substitutable? substitutable?
357 359
358 ;; Xorriso seems to be quite memory-hungry, so increase the VM's RAM size. 360 ;; Xorriso seems to be quite memory-hungry, so increase the VM's RAM size.
359 #:memory-size 512)) 361 #:memory-size 512))
@@ -735,7 +737,8 @@ substitutable."
735 #:inputs `(("system" ,os) 737 #:inputs `(("system" ,os)
736 ("bootcfg" ,bootcfg)) 738 ("bootcfg" ,bootcfg))
737 #:grub-mkrescue-environment 739 #:grub-mkrescue-environment
738 '(("MKRESCUE_SED_MODE" . "mbr_hfs"))) 740 '(("MKRESCUE_SED_MODE" . "mbr_hfs"))
741 #:substitutable? substitutable?)
739 (qemu-image #:name name 742 (qemu-image #:name name
740 #:os os 743 #:os os
741 #:bootcfg-drv bootcfg 744 #:bootcfg-drv bootcfg