diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-11 20:23:56 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-13 01:20:19 +0200 |
commit | ec46a5338d60eb6714a47b67e0d1e92079412d73 (patch) | |
tree | 0b210eef6c93f878bb2db2731dab52bbf3705fc2 /gnu/system/linux-initrd.scm | |
parent | f5f1a81f3f00a971404cf64b59d61312c0be08c5 (diff) | |
download | guix-ec46a5338d60eb6714a47b67e0d1e92079412d73.tar.gz |
linux-initrd: Support checking NTFS volumes on boot.
* gnu/system/linux-initrd.scm (file-system-packages): Add ntfsfix/static when needed.
Diffstat (limited to 'gnu/system/linux-initrd.scm')
-rw-r--r-- | gnu/system/linux-initrd.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index a083292fcf..329cd38cd6 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -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) '()) |