vm: Remove redundant conditional in system-disk-image.
* gnu/system/vm.scm (system-disk-image): Remove redundant conditional for #:file-system-type when calling qemu-image.
This commit is contained in:
parent
c427fda233
commit
4138e782dc
|
@ -403,10 +403,7 @@ to USB sticks meant to be read-only."
|
||||||
(operating-system-bootloader os))
|
(operating-system-bootloader os))
|
||||||
#:disk-image-size disk-image-size
|
#:disk-image-size disk-image-size
|
||||||
#:disk-image-format "raw"
|
#:disk-image-format "raw"
|
||||||
#:file-system-type (if (string=? "iso9660"
|
#:file-system-type file-system-type
|
||||||
file-system-type)
|
|
||||||
"ext4"
|
|
||||||
file-system-type)
|
|
||||||
#:file-system-label root-label
|
#:file-system-label root-label
|
||||||
#:copy-inputs? #t
|
#:copy-inputs? #t
|
||||||
#:register-closures? #t
|
#:register-closures? #t
|
||||||
|
|
Loading…
Reference in New Issue