linux-initrd: Add isofs if necessary.
* gnu/system/linux-initrd.scm (base-initrd): Add isofs.
This commit is contained in:
parent
3fb8e281b7
commit
ed3485fa9c
|
@ -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")
|
||||
'())
|
||||
|
|
Loading…
Reference in New Issue