From ec46a5338d60eb6714a47b67e0d1e92079412d73 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 11 Oct 2021 20:23:56 +0200 Subject: linux-initrd: Support checking NTFS volumes on boot. * gnu/system/linux-initrd.scm (file-system-packages): Add ntfsfix/static when needed. --- gnu/system/linux-initrd.scm | 3 +++ 1 file changed, 3 insertions(+) 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) '()) -- cgit v1.2.3