mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
160fb93fdc
This includes disabling some features in the initrd by default, this is only done when the new initrd is used. Namely, ext and bcache are disabled by default. bcache gets an own enable option while ext is detected like any other filesystem.
28 lines
860 B
Nix
28 lines
860 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
inInitrd = lib.any (fs: fs == "ext2" || fs == "ext3" || fs == "ext4") config.boot.initrd.supportedFilesystems;
|
|
|
|
in
|
|
|
|
{
|
|
config = {
|
|
|
|
system.fsPackages = lib.mkIf (config.boot.initrd.systemd.enable -> inInitrd) [ pkgs.e2fsprogs ];
|
|
|
|
# As of kernel 4.3, there is no separate ext3 driver (they're also handled by ext4.ko)
|
|
boot.initrd.availableKernelModules = lib.mkIf (config.boot.initrd.systemd.enable -> inInitrd) [ "ext2" "ext4" ];
|
|
|
|
boot.initrd.extraUtilsCommands = lib.mkIf (!config.boot.initrd.systemd.enable)
|
|
''
|
|
# Copy e2fsck and friends.
|
|
copy_bin_and_libs ${pkgs.e2fsprogs}/sbin/e2fsck
|
|
copy_bin_and_libs ${pkgs.e2fsprogs}/sbin/tune2fs
|
|
ln -sv e2fsck $out/bin/fsck.ext2
|
|
ln -sv e2fsck $out/bin/fsck.ext3
|
|
ln -sv e2fsck $out/bin/fsck.ext4
|
|
'';
|
|
|
|
};
|
|
}
|