diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-03-27 11:51:18 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-27 11:54:06 +0100 |
commit | 45c0d1d790f01ebc020fc4b2787a6abcdaa3f383 (patch) | |
tree | 8426419a55ffb5e9baab09230ae9b1f67ac22892 /gnu/system/vm.scm | |
parent | 391e0d65d7129d53c025963d2758724e75626eb4 (diff) | |
download | patches-45c0d1d790f01ebc020fc4b2787a6abcdaa3f383.tar patches-45c0d1d790f01ebc020fc4b2787a6abcdaa3f383.tar.gz |
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'.
Diffstat (limited to 'gnu/system/vm.scm')
-rw-r--r-- | gnu/system/vm.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 667624621f..db9b1707d7 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -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") |