linux-initrd: Add isofs if necessary.

* gnu/system/linux-initrd.scm (base-initrd): Add isofs.
master
Danny Milosavljevic 2017-06-29 05:17:33 +02:00
parent 3fb8e281b7
commit ed3485fa9c
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 3 additions and 0 deletions

View File

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