From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39822) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dQQlO-0004do-4q for guix-patches@gnu.org; Thu, 29 Jun 2017 00:09:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dQQlK-0005jg-Vz for guix-patches@gnu.org; Thu, 29 Jun 2017 00:09:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40591) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dQQlK-0005jA-ID for guix-patches@gnu.org; Thu, 29 Jun 2017 00:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dQQlK-0002Pz-9T for guix-patches@gnu.org; Thu, 29 Jun 2017 00:09:02 -0400 Subject: [bug#27521] [PATCH] linux-initrd: Add isofs if necessary. Resent-Message-ID: From: Danny Milosavljevic Date: Thu, 29 Jun 2017 05:17:33 +0200 Message-Id: <20170629031733.26149-1-dannym@scratchpost.org> In-Reply-To: <20170628220303.31206-1-dannym@scratchpost.org> References: <20170628220303.31206-1-dannym@scratchpost.org> 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: 27521@debbugs.gnu.org * gnu/system/linux-initrd.scm (base-initrd): Add isofs. --- gnu/system/linux-initrd.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 3a5e76034..89caf8325 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -285,6 +285,9 @@ loaded at boot time in the order in which they appear." ,@(if (find (file-system-type-predicate "btrfs") file-systems) '("btrfs") '()) + ,@(if (find (file-system-type-predicate "iso9660") file-systems) + '("isofs") + '()) ,@(if volatile-root? '("fuse") '())