mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
guix system: Use "image.iso" as the name of ISO images.
* guix/scripts/system.scm (system-derivation-for-action): Pass #:name to 'system-disk-image'.
This commit is contained in:
parent
8d033e3e16
commit
5058bf5684
1 changed files with 6 additions and 2 deletions
|
@ -579,7 +579,11 @@ (define* (system-derivation-for-action os action
|
|||
(* 70 (expt 2 20)))
|
||||
#:mappings mappings))
|
||||
((disk-image)
|
||||
(system-disk-image os #:disk-image-size image-size
|
||||
(system-disk-image os
|
||||
#:name (match file-system-type
|
||||
("iso9660" "image.iso")
|
||||
(_ "disk-image"))
|
||||
#:disk-image-size image-size
|
||||
#:file-system-type file-system-type))))
|
||||
|
||||
(define (maybe-suggest-running-guix-pull)
|
||||
|
|
Loading…
Reference in a new issue