me
/
guix
Archived
1
0
Fork 0

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.
master
Ludovic Courtès 2022-07-01 10:33:51 +02:00
parent 9f530ef38a
commit ed19bc87e4
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 2 deletions

View File

@ -445,8 +445,8 @@ used in the image."
(define (genimage-type-options image-type image)
(cond
((equal? image-type "hdimage")
(format #f "~%~/~/gpt = ~a~%~/"
(if (gpt-image? image) "true" "false")))
(format #f "~%~/~/partition-table-type = \"~a\"~%~/"
(image-partition-table-type image)))
(else "")))
(let* ((format (image-format image))