guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/14: linux-initrd: Support checking NTFS volumes on boot.


From: guix-commits
Subject: 03/14: linux-initrd: Support checking NTFS volumes on boot.
Date: Tue, 12 Oct 2021 20:56:48 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit ec46a5338d60eb6714a47b67e0d1e92079412d73
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Oct 11 20:23:56 2021 +0200

    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 a083292..329cd38 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)
           '())



reply via email to

[Prev in Thread] Current Thread [Next in Thread]