linux-initrd: Support checking NTFS volumes on boot.
* gnu/system/linux-initrd.scm (file-system-packages): Add ntfsfix/static when needed.master
parent
f5f1a81f3f
commit
ec46a5338d
|
@ -288,6 +288,9 @@ FILE-SYSTEMS."
|
|||
,@(if (find (file-system-type-predicate "jfs") file-systems)
|
||||
(list jfs_fsck/static)
|
||||
'())
|
||||
,@(if (find (file-system-type-predicate "ntfs") file-systems)
|
||||
(list ntfsfix/static)
|
||||
'())
|
||||
,@(if (find (file-system-type-predicate "f2fs") file-systems)
|
||||
(list f2fs-fsck/static)
|
||||
'())
|
||||
|
|
Reference in New Issue