mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
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:
parent
f5f1a81f3f
commit
ec46a5338d
1 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
'())
|
||||
|
|
Loading…
Reference in a new issue