mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05: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 @@ (define* (file-system-packages file-systems #:key (volatile-root? #f))
|
|||
,@(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