guix-commits
[Top][All Lists]
Advanced

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

01/01: linux-initrd: Add isofs if necessary.


From: Danny Milosavljevic
Subject: 01/01: linux-initrd: Add isofs if necessary.
Date: Sun, 2 Jul 2017 14:27:36 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit ed3485fa9c6c758bff1fb7391c8360c2c93e7337
Author: Danny Milosavljevic <address@hidden>
Date:   Thu Jun 29 05:17:33 2017 +0200

    linux-initrd: Add isofs if necessary.
    
    * 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 3a5e760..89caf83 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]