vm: Ask QEMU for more RAM in the VM that makes ISO9660 images.

* gnu/system/vm.scm (iso9660-image): Pass #:memory-size to
'expression->derivation-in-linux-vm'.
This commit is contained in:
Ludovic Courtès 2019-03-27 11:51:18 +01:00
parent 391e0d65d7
commit 45c0d1d790
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 1 deletions

View File

@ -321,7 +321,10 @@ INPUTS is a list of inputs (as for packages)."
#:make-disk-image? #f
#:single-file-output? #t
#:references-graphs inputs))
#:references-graphs inputs
;; Xorriso seems to be quite memory-hungry, so increase the VM's RAM size.
#:memory-size 512))
(define* (qemu-image #:key
(name "qemu-image")