diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-06-30 00:04:38 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-06-30 00:16:50 +0200 |
commit | a8ac4f081a9a679498ea42ccfe001f218bba3043 (patch) | |
tree | 7c5d85cc5d3d52ecb1c482bfde52c4755b48a8bb /guix/scripts | |
parent | a2cf57e79e0c1ca59ff854c12ece178a73fe224d (diff) | |
download | gnu-guix-a8ac4f081a9a679498ea42ccfe001f218bba3043.tar gnu-guix-a8ac4f081a9a679498ea42ccfe001f218bba3043.tar.gz |
vm: Estimate the disk size by default.
* gnu/build/vm.scm (estimated-partition-size): New procedure.
* gnu/system/vm.scm (expression->derivation-in-linux-vm):
Change #:disk-image-size default to 'guess.
[builder]: When DISK-IMAGE-SIZE is 'guess, use
'estimated-partition-size' and compute and estimate of the image size.
(qemu-image): Likewise.
* guix/build/store-copy.scm (file-size, closure-size): New procedures.
* guix/scripts/system.scm (%default-options): Change 'image-size' to
'guess.
* doc/guix.texi (Building the Installation Image): Remove '--image-size'
flag from example.
(Invoking guix system): Document the image size estimate.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index 35675cc018..7e20b10dad 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -854,7 +854,7 @@ Some ACTIONS support additional ARGS.\n")) (build-hook? . #t) (max-silent-time . 3600) (verbosity . 0) - (image-size . ,(* 900 (expt 2 20))) + (image-size . guess) (install-bootloader? . #t))) |