From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48787) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doSdL-0005cg-5u for guix-patches@gnu.org; Sun, 03 Sep 2017 07:00:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1doSdG-0007cb-Lm for guix-patches@gnu.org; Sun, 03 Sep 2017 07:00:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36183) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1doSdG-0007cJ-JX for guix-patches@gnu.org; Sun, 03 Sep 2017 07:00:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1doSdG-0004d1-CD for guix-patches@gnu.org; Sun, 03 Sep 2017 07:00:02 -0400 Subject: [bug#28335] [PATCH] vm: Remove redundant conditional in system-disk-image. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48569) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doScO-0005PJ-3P for guix-patches@gnu.org; Sun, 03 Sep 2017 06:59:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1doScJ-0006oK-Ol for guix-patches@gnu.org; Sun, 03 Sep 2017 06:59:08 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:59346) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doScJ-0006nq-IN for guix-patches@gnu.org; Sun, 03 Sep 2017 06:59:03 -0400 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id BC5C613D2BC for ; Sun, 3 Sep 2017 11:59:02 +0100 (BST) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 385a11f4 for ; Sun, 3 Sep 2017 10:59:02 +0000 (UTC) From: Christopher Baines Date: Sun, 3 Sep 2017 11:59:02 +0100 Message-Id: <20170903105902.3961-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28335@debbugs.gnu.org * gnu/system/vm.scm (system-disk-image): Remove redundant conditional for #:file-system-type when calling qemu-image. --- gnu/system/vm.scm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 4494af003..b3da11876 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 -- 2.14.1