diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-09-22 23:46:26 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-09-23 18:17:16 +0200 |
commit | 15489291d93bcd67e30eed686da0d58050ce1c0e (patch) | |
tree | 3c9a9bacb7f67bcc2c9293203cb640b486351b86 /gnu/system | |
parent | 348f0c61efc0f35aedcd0e44bc9fa7bf7f067942 (diff) | |
download | guix-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.scm | 2 |
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) |