guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#27521] [PATCH] linux-initrd: Add isofs if necessary.


From: Danny Milosavljevic
Subject: [bug#27521] [PATCH] linux-initrd: Add isofs if necessary.
Date: Thu, 29 Jun 2017 05:17:33 +0200

* 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")
             '())





reply via email to

[Prev in Thread] Current Thread [Next in Thread]