diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-08-27 00:40:52 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-01 00:48:59 -0400 |
commit | 6d6e74ea9862dd256b16fcce3f365bbea9e4dc9b (patch) | |
tree | 28fe132663401c0b3da1e41237d720091588e279 /gnu/system/image.scm | |
parent | a02ad4592cc085ca488a5c4c4c352dba5eaa645b (diff) | |
download | guix-6d6e74ea9862dd256b16fcce3f365bbea9e4dc9b.tar.gz |
Revert "system: image: Do not offload image files."
This reverts commit 6a9581741e4ee81226aeb2f1c997df76670a6aab, which is obsoleted by the previous commit.
Diffstat (limited to 'gnu/system/image.scm')
-rw-r--r-- | gnu/system/image.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm index 733f2bfa8d..97c7021454 100644 --- a/gnu/system/image.scm +++ b/gnu/system/image.scm @@ -267,8 +267,7 @@ used in the image." #$output image-root))))) (computed-file "partition.img" image-builder - #:options `(#:local-build? #t ;typically large file - #:references-graphs ,inputs)))) + #:options `(#:references-graphs ,inputs)))) (define (partition->config partition) ;; Return the genimage partition configuration for PARTITION. @@ -326,8 +325,7 @@ image ~a { #~(symlink (string-append #$image-dir "/" #$genimage-name) #$output) - #:options `(#:local-build? #t ;typically large file - #:substitutable? ,substitutable?)))) + #:options `(#:substitutable? ,substitutable?)))) ;; @@ -404,8 +402,7 @@ used in the image. " #:volume-id #$root-label #:volume-uuid #$root-uuid))))) (computed-file name builder - #:options `(#:local-build? #t ;typically large file - #:references-graphs ,inputs + #:options `(#:references-graphs ,inputs #:substitutable? ,substitutable?)))) (define (image-with-label base-image label) |