diff options
author | Christopher Baines <mail@cbaines.net> | 2017-09-03 10:56:25 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2017-09-04 22:30:04 +0100 |
commit | 4138e782dcfea675ebc2347cbd4ea9abeb9dff36 (patch) | |
tree | bd5611b37a504b0569a29fa6efb4f1f86d5228ee /gnu/system | |
parent | c427fda233a7da0c8eb27e244a562c51d3835503 (diff) | |
download | patches-4138e782dcfea675ebc2347cbd4ea9abeb9dff36.tar patches-4138e782dcfea675ebc2347cbd4ea9abeb9dff36.tar.gz |
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.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/vm.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 4494af0031..b3da118765 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -403,10 +403,7 @@ to USB sticks meant to be read-only." (operating-system-bootloader os)) #:disk-image-size disk-image-size #:disk-image-format "raw" - #:file-system-type (if (string=? "iso9660" - file-system-type) - "ext4" - file-system-type) + #:file-system-type file-system-type #:file-system-label root-label #:copy-inputs? #t #:register-closures? #t |