mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
image: Support generating GPT images via partition-table-type
.
* gnu/image.scm (<image>)[partition-table-type]: New field. * gnu/system/image.scm: Implement partition-table-type logic for genimage. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
39754503e8
commit
096a2bf8c5
2 changed files with 47 additions and 17 deletions
|
@ -38,6 +38,7 @@
|
|||
image-platform
|
||||
image-size
|
||||
image-operating-system
|
||||
image-partition-table-type
|
||||
image-partitions
|
||||
image-compression?
|
||||
image-volatile-root?
|
||||
|
@ -86,6 +87,8 @@
|
|||
(default 'guess))
|
||||
(operating-system image-operating-system ;<operating-system>
|
||||
(default #f))
|
||||
(partition-table-type image-partition-table-type ; 'mbr or 'gpt
|
||||
(default 'mbr))
|
||||
(partitions image-partitions ;list of <partition>
|
||||
(default '()))
|
||||
(compression? image-compression? ;boolean
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue