[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)
'())
- branch master updated (f0c0ef6 -> 4605d4d), guix-commits, 2021/10/12
- 02/14: gnu: Add ntfsfix-static., guix-commits, 2021/10/12
- 06/14: gnu: Rename google-brotli back to brotli., guix-commits, 2021/10/12
- 08/14: gnu: fheroes2: Update to 0.9.8., guix-commits, 2021/10/12
- 09/14: gnu: acpid: Update to 2.0.33., guix-commits, 2021/10/12
- 03/14: linux-initrd: Support checking NTFS volumes on boot.,
guix-commits <=
- 01/14: gnu: Add ntfs-3g-static., guix-commits, 2021/10/12
- 04/14: gnu: cpufrequtils: Update to 008., guix-commits, 2021/10/12
- 05/14: gnu: Remove sysfsutils@1., guix-commits, 2021/10/12
- 07/14: gnu: Remove duplicate python-google-brotli package., guix-commits, 2021/10/12
- 11/14: gnu: astroid: Update to 0.16., guix-commits, 2021/10/12
- 13/14: gnu: apostrophe: Update to 2.5., guix-commits, 2021/10/12
- 10/14: gnu: btrfs-progs: Update to 5.14.2., guix-commits, 2021/10/12
- 12/14: gnu: aqbanking: Update to 6.3.2., guix-commits, 2021/10/12
- 14/14: gnu: gsound: Update to 1.0.3., guix-commits, 2021/10/12