diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-05-20 21:28:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-21 01:17:08 +0200 |
commit | a588e34e0defcb5fde48570cf3a304cb942bf743 (patch) | |
tree | ca3d0264418168cf810e63e9b17b827401ca9a9b /gnu | |
parent | 402f241da491b685132b2a1a4327553c700a4e62 (diff) | |
download | guix-a588e34e0defcb5fde48570cf3a304cb942bf743.tar guix-a588e34e0defcb5fde48570cf3a304cb942bf743.tar.gz |
vm: Increase default disk size to account for ESP partition.
Fixes a test regression introduced by ecf5d5376979fadd971559367bf553df89fcc62b.
* gnu/system/vm.scm (system-qemu-image/shared-store-script): 30MiB -> 70MiB.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system/vm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index c40bb4c436..f01f68fbd3 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -485,7 +485,7 @@ with '-virtfs' options for the host file systems listed in SHARED-FS." (mappings '()) full-boot? (disk-image-size - (* (if full-boot? 500 30) + (* (if full-boot? 500 70) (expt 2 20)))) "Return a derivation that builds a script to run a virtual machine image of OS that shares its store with the host. |