linux-initrd: Support checking NTFS volumes on boot.

* gnu/system/linux-initrd.scm (file-system-packages): Add ntfsfix/static
when needed.
This commit is contained in:
Tobias Geerinckx-Rice 2021-10-11 20:23:56 +02:00
parent f5f1a81f3f
commit ec46a5338d
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 0 deletions

View File

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