mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
system: image: Add qcow2 image type.
* gnu/system/image.scm (qcow2-image-type): New variable.
This commit is contained in:
parent
ae39b7a9a9
commit
23ad7e92b1
1 changed files with 11 additions and 0 deletions
|
@ -68,6 +68,7 @@ (define-module (gnu system image)
|
|||
|
||||
image-with-os
|
||||
raw-image-type
|
||||
qcow2-image-type
|
||||
iso-image-type
|
||||
uncompressed-iso-image-type
|
||||
|
||||
|
@ -139,6 +140,16 @@ (define raw-image-type
|
|||
(name 'raw)
|
||||
(constructor (cut image-with-os efi-disk-image <>))))
|
||||
|
||||
(define qcow2-image-type
|
||||
(image-type
|
||||
(name 'qcow2)
|
||||
(constructor (cut image-with-os
|
||||
(image
|
||||
(inherit efi-disk-image)
|
||||
(name 'image.qcow2)
|
||||
(format 'compressed-qcow2))
|
||||
<>))))
|
||||
|
||||
(define iso-image-type
|
||||
(image-type
|
||||
(name 'iso9660)
|
||||
|
|
Loading…
Reference in a new issue