[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: vm: Increase default disk size to account for ESP partition.
From: |
Marius Bakke |
Subject: |
01/01: vm: Increase default disk size to account for ESP partition. |
Date: |
Sat, 20 May 2017 19:08:23 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 9a1bfe764859365b6726f168da95b88a2d22403b
Author: Marius Bakke <address@hidden>
Date: Sat May 20 21:28:20 2017 +0200
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.
---
gnu/system/vm.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index d282ba5..ad5e6b7 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -499,7 +499,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.