summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-07-01 10:33:51 +0200
committerLudovic Courtès <ludo@gnu.org>2022-07-01 12:10:28 +0200
commited19bc87e4234144a05040aae75aee9a57e71f9b (patch)
tree84c2f53e43b2a32de5923f33b5723a3b81b42714 /gnu/system
parent9f530ef38a23caa1136f93cda45d396ce8fe1569 (diff)
image: Avoid use of the deprecated 'gpt' option of genimage.
* gnu/system/image.scm (system-disk-image)[genimage-type-options]: Use 'partition-table-type' instead of the deprecated 'gpt' option.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/image.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index 60ae38f6d89..e6e6917ecd8 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -445,8 +445,8 @@ used in the image."
445 (define (genimage-type-options image-type image) 445 (define (genimage-type-options image-type image)
446 (cond 446 (cond
447 ((equal? image-type "hdimage") 447 ((equal? image-type "hdimage")
448 (format #f "~%~/~/gpt = ~a~%~/" 448 (format #f "~%~/~/partition-table-type = \"~a\"~%~/"
449 (if (gpt-image? image) "true" "false"))) 449 (image-partition-table-type image)))
450 (else ""))) 450 (else "")))
451 451
452 (let* ((format (image-format image)) 452 (let* ((format (image-format image))