summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2020-12-03 11:53:53 +0100
committerMathieu Othacehe <othacehe@gnu.org>2021-01-17 11:04:25 +0100
commit2f497d94e7f6574b0847025ce29eafaf858008ef (patch)
tree49122b69f5b764879639bb1b100ec2d6208f2128 /gnu/system
parent014845591a406a367082903da3e70d103b78bc44 (diff)
downloadguix-patches-2f497d94e7f6574b0847025ce29eafaf858008ef.tar
guix-patches-2f497d94e7f6574b0847025ce29eafaf858008ef.tar.gz
image: Rename "raw" image-type to "efi-raw".
* gnu/system/image.scm (raw-image-type): Rename to "efi-raw-image-type". * guix/scripts/system.scm (%default-options): Adapt accordingly. * doc/guix.texi: Ditto. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/image.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index 90b9209988..1012fa6158 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -70,7 +70,7 @@
arm64-disk-image
image-with-os
- raw-image-type
+ efi-raw-image-type
qcow2-image-type
iso-image-type
uncompressed-iso-image-type
@@ -157,9 +157,9 @@ set to the given OS."
(inherit base-image)
(operating-system os)))
-(define raw-image-type
+(define efi-raw-image-type
(image-type
- (name 'raw)
+ (name 'efi-raw)
(constructor (cut image-with-os efi-disk-image <>))))
(define qcow2-image-type