summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-03-24 23:31:56 +0100
committerLudovic Courtès <ludo@gnu.org>2016-03-24 23:31:56 +0100
commit622b2304ce1f9cde88ba9b8dd01780e98e5d3273 (patch)
tree4c6c938e8153fcc7b322dd464af45ef9fc523421
parentaeaa5ccbf4e12ce651443bb0fda53e25599a221e (diff)
doc: We now need 1 GiB for the installation USB image.
* doc/guix.texi (Building the Installation Image): Change image size to 1G. * build-aux/hydra/gnu-system.scm (qemu-jobs): Likewise.
-rw-r--r--build-aux/hydra/gnu-system.scm2
-rw-r--r--doc/guix.texi3
2 files changed, 3 insertions, 2 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index c5004a65acd..548d9e044a7 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -161,7 +161,7 @@ system.")
161 (set-guile-for-build (default-guile)) 161 (set-guile-for-build (default-guile))
162 (system-disk-image installation-os 162 (system-disk-image installation-os
163 #:disk-image-size 163 #:disk-image-size
164 (* 860 MiB)))))) 164 (* 1024 MiB))))))
165 '())) 165 '()))
166 166
167(define (tarball-jobs store system) 167(define (tarball-jobs store system)
diff --git a/doc/guix.texi b/doc/guix.texi
index d0dcc51094d..08d7a08ffab 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -6056,8 +6056,9 @@ good.
6056The installation image described above was built using the @command{guix 6056The installation image described above was built using the @command{guix
6057system} command, specifically: 6057system} command, specifically:
6058 6058
6059@c FIXME: 1G is too much; see <http://bugs.gnu.org/23077>.
6059@example 6060@example
6060guix system disk-image --image-size=850MiB gnu/system/install.scm 6061guix system disk-image --image-size=1G gnu/system/install.scm
6061@end example 6062@end example
6062 6063
6063Have a look at @file{gnu/system/install.scm} in the source tree, 6064Have a look at @file{gnu/system/install.scm} in the source tree,