summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2021-09-22 23:46:26 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2021-09-23 18:17:16 +0200
commit15489291d93bcd67e30eed686da0d58050ce1c0e (patch)
tree3c9a9bacb7f67bcc2c9293203cb640b486351b86 /gnu/system
parent348f0c61efc0f35aedcd0e44bc9fa7bf7f067942 (diff)
downloadguix-patches-15489291d93bcd67e30eed686da0d58050ce1c0e.tar
guix-patches-15489291d93bcd67e30eed686da0d58050ce1c0e.tar.gz
linux-initrd: Include only the single ‘bcachefs’ binary.
* gnu/system/linux-initrd.scm (file-system-packages): Substitute bcachefs/static for bcachefs-tools/static.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/linux-initrd.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm
index 7f7740dd6e..dc0f419bfd 100644
--- a/gnu/system/linux-initrd.scm
+++ b/gnu/system/linux-initrd.scm
@@ -280,7 +280,7 @@ FILE-SYSTEMS."
(list fatfsck/static)
'())
,@(if (find (file-system-type-predicate "bcachefs") file-systems)
- (list bcachefs-tools/static)
+ (list bcachefs/static)
'())
,@(if (find (file-system-type-predicate "btrfs") file-systems)
(list btrfs-progs/static)