nixos/udev: Add systemd stage 1 support
This commit is contained in:
parent
72861e1902
commit
fb44ecd129
2 changed files with 82 additions and 16 deletions
|
@ -30,10 +30,10 @@ let
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Perform substitutions in all udev rules files.
|
# Perform substitutions in all udev rules files.
|
||||||
udevRules = pkgs.runCommand "udev-rules"
|
udevRulesFor = { name, udevPackages, udevPath, udev, systemd, binPackages, initrdBin ? null }: pkgs.runCommand name
|
||||||
{ preferLocalBuild = true;
|
{ preferLocalBuild = true;
|
||||||
allowSubstitutes = false;
|
allowSubstitutes = false;
|
||||||
packages = unique (map toString cfg.packages);
|
packages = unique (map toString udevPackages);
|
||||||
}
|
}
|
||||||
''
|
''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
|
@ -61,6 +61,9 @@ let
|
||||||
--replace \"/bin/mount \"${pkgs.util-linux}/bin/mount \
|
--replace \"/bin/mount \"${pkgs.util-linux}/bin/mount \
|
||||||
--replace /usr/bin/readlink ${pkgs.coreutils}/bin/readlink \
|
--replace /usr/bin/readlink ${pkgs.coreutils}/bin/readlink \
|
||||||
--replace /usr/bin/basename ${pkgs.coreutils}/bin/basename
|
--replace /usr/bin/basename ${pkgs.coreutils}/bin/basename
|
||||||
|
${optionalString (initrdBin != null) ''
|
||||||
|
substituteInPlace $i --replace '/run/current-system/systemd' "${removeSuffix "/bin" initrdBin}"
|
||||||
|
''}
|
||||||
done
|
done
|
||||||
|
|
||||||
echo -n "Checking that all programs called by relative paths in udev rules exist in ${udev}/lib/udev... "
|
echo -n "Checking that all programs called by relative paths in udev rules exist in ${udev}/lib/udev... "
|
||||||
|
@ -85,8 +88,9 @@ let
|
||||||
for i in $import_progs $run_progs; do
|
for i in $import_progs $run_progs; do
|
||||||
# if the path refers to /run/current-system/systemd, replace with config.systemd.package
|
# if the path refers to /run/current-system/systemd, replace with config.systemd.package
|
||||||
if [[ $i == /run/current-system/systemd* ]]; then
|
if [[ $i == /run/current-system/systemd* ]]; then
|
||||||
i="${config.systemd.package}/''${i#/run/current-system/systemd/}"
|
i="${systemd}/''${i#/run/current-system/systemd/}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -x $i ]]; then
|
if [[ ! -x $i ]]; then
|
||||||
echo "FAIL"
|
echo "FAIL"
|
||||||
echo "$i is called in udev rules but is not executable or does not exist"
|
echo "$i is called in udev rules but is not executable or does not exist"
|
||||||
|
@ -103,7 +107,7 @@ let
|
||||||
echo "Consider fixing the following udev rules:"
|
echo "Consider fixing the following udev rules:"
|
||||||
echo "$filesToFixup" | while read localFile; do
|
echo "$filesToFixup" | while read localFile; do
|
||||||
remoteFile="origin unknown"
|
remoteFile="origin unknown"
|
||||||
for i in ${toString cfg.packages}; do
|
for i in ${toString binPackages}; do
|
||||||
for j in "$i"/*/udev/rules.d/*; do
|
for j in "$i"/*/udev/rules.d/*; do
|
||||||
[ -e "$out/$(basename "$j")" ] || continue
|
[ -e "$out/$(basename "$j")" ] || continue
|
||||||
[ "$(basename "$j")" = "$(basename "$localFile")" ] || continue
|
[ "$(basename "$j")" = "$(basename "$localFile")" ] || continue
|
||||||
|
@ -126,7 +130,7 @@ let
|
||||||
${optionalString (!config.boot.hardwareScan) ''
|
${optionalString (!config.boot.hardwareScan) ''
|
||||||
ln -s /dev/null $out/80-drivers.rules
|
ln -s /dev/null $out/80-drivers.rules
|
||||||
''}
|
''}
|
||||||
''; # */
|
'';
|
||||||
|
|
||||||
hwdbBin = pkgs.runCommand "hwdb.bin"
|
hwdbBin = pkgs.runCommand "hwdb.bin"
|
||||||
{ preferLocalBuild = true;
|
{ preferLocalBuild = true;
|
||||||
|
@ -193,6 +197,34 @@ in
|
||||||
apply = map getBin;
|
apply = map getBin;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
initrdPackages = mkOption {
|
||||||
|
type = types.listOf types.path;
|
||||||
|
default = [];
|
||||||
|
visible = false;
|
||||||
|
description = ''
|
||||||
|
<emphasis>This will only be used when systemd is used in stage 1.</emphasis>
|
||||||
|
|
||||||
|
List of packages containing <command>udev</command> rules that will be copied to stage 1.
|
||||||
|
All files found in
|
||||||
|
<filename><replaceable>pkg</replaceable>/etc/udev/rules.d</filename> and
|
||||||
|
<filename><replaceable>pkg</replaceable>/lib/udev/rules.d</filename>
|
||||||
|
will be included.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
initrdBinPackages = mkOption {
|
||||||
|
type = types.listOf types.path;
|
||||||
|
default = [];
|
||||||
|
visible = false;
|
||||||
|
description = ''
|
||||||
|
<emphasis>This will only be used when systemd is used in stage 1.</emphasis>
|
||||||
|
|
||||||
|
Packages to search for binaries that are referenced by the udev rules in stage 1.
|
||||||
|
This list always contains /bin of the initrd.
|
||||||
|
'';
|
||||||
|
apply = map getBin;
|
||||||
|
};
|
||||||
|
|
||||||
path = mkOption {
|
path = mkOption {
|
||||||
type = types.listOf types.path;
|
type = types.listOf types.path;
|
||||||
default = [];
|
default = [];
|
||||||
|
@ -298,16 +330,54 @@ in
|
||||||
|
|
||||||
boot.kernelParams = mkIf (!config.networking.usePredictableInterfaceNames) [ "net.ifnames=0" ];
|
boot.kernelParams = mkIf (!config.networking.usePredictableInterfaceNames) [ "net.ifnames=0" ];
|
||||||
|
|
||||||
boot.initrd.extraUdevRulesCommands = optionalString (cfg.initrdRules != "")
|
boot.initrd.extraUdevRulesCommands = optionalString (!config.boot.initrd.systemd.enable && cfg.initrdRules != "")
|
||||||
''
|
''
|
||||||
cat <<'EOF' > $out/99-local.rules
|
cat <<'EOF' > $out/99-local.rules
|
||||||
${cfg.initrdRules}
|
${cfg.initrdRules}
|
||||||
EOF
|
EOF
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
boot.initrd.systemd.additionalUpstreamUnits = [
|
||||||
|
# TODO: "initrd-udevadm-cleanup-db.service" is commented out because of https://github.com/systemd/systemd/issues/12953
|
||||||
|
"systemd-udevd-control.socket"
|
||||||
|
"systemd-udevd-kernel.socket"
|
||||||
|
"systemd-udevd.service"
|
||||||
|
"systemd-udev-settle.service"
|
||||||
|
"systemd-udev-trigger.service"
|
||||||
|
];
|
||||||
|
boot.initrd.systemd.storePaths = [
|
||||||
|
"${config.boot.initrd.systemd.package}/lib/systemd/systemd-udevd"
|
||||||
|
"${config.boot.initrd.systemd.package}/lib/udev"
|
||||||
|
] ++ map toString cfg.initrdBinPackages;
|
||||||
|
|
||||||
|
# Generate the udev rules for the initrd
|
||||||
|
boot.initrd.systemd.contents = {
|
||||||
|
"/etc/udev/rules.d".source = udevRulesFor {
|
||||||
|
name = "initrd-udev-rules";
|
||||||
|
initrdBin = config.boot.initrd.systemd.contents."/bin".source;
|
||||||
|
udevPackages = cfg.initrdPackages;
|
||||||
|
udevPath = config.boot.initrd.systemd.contents."/bin".source;
|
||||||
|
udev = config.boot.initrd.systemd.package;
|
||||||
|
systemd = config.boot.initrd.systemd.package;
|
||||||
|
binPackages = cfg.initrdBinPackages ++ [ config.boot.initrd.systemd.contents."/bin".source ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# Insert custom rules
|
||||||
|
services.udev.initrdPackages = mkIf (cfg.initrdRules != "") (pkgs.writeTextFile {
|
||||||
|
name = "initrd-udev-rules";
|
||||||
|
destination = "/etc/udev/rules.d/99-local.rules";
|
||||||
|
text = cfg.initrdRules;
|
||||||
|
});
|
||||||
|
|
||||||
environment.etc =
|
environment.etc =
|
||||||
{
|
{
|
||||||
"udev/rules.d".source = udevRules;
|
"udev/rules.d".source = udevRulesFor {
|
||||||
|
name = "udev-rules";
|
||||||
|
udevPackages = cfg.packages;
|
||||||
|
systemd = config.systemd.package;
|
||||||
|
binPackages = cfg.packages;
|
||||||
|
inherit udevPath udev;
|
||||||
|
};
|
||||||
"udev/hwdb.bin".source = hwdbBin;
|
"udev/hwdb.bin".source = hwdbBin;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,6 @@ let
|
||||||
"initrd-switch-root.service"
|
"initrd-switch-root.service"
|
||||||
"initrd-switch-root.target"
|
"initrd-switch-root.target"
|
||||||
"initrd.target"
|
"initrd.target"
|
||||||
"initrd-udevadm-cleanup-db.service"
|
|
||||||
"kexec.target"
|
"kexec.target"
|
||||||
"kmod-static-nodes.service"
|
"kmod-static-nodes.service"
|
||||||
"local-fs-pre.target"
|
"local-fs-pre.target"
|
||||||
|
@ -71,12 +70,6 @@ let
|
||||||
"systemd-sysctl.service"
|
"systemd-sysctl.service"
|
||||||
"systemd-tmpfiles-setup-dev.service"
|
"systemd-tmpfiles-setup-dev.service"
|
||||||
"systemd-tmpfiles-setup.service"
|
"systemd-tmpfiles-setup.service"
|
||||||
"systemd-udevd-control.socket"
|
|
||||||
"systemd-udevd-kernel.socket"
|
|
||||||
"systemd-udevd.service"
|
|
||||||
"systemd-udev-settle.service"
|
|
||||||
"systemd-udev-trigger.service"
|
|
||||||
"systemd-vconsole-setup.service"
|
|
||||||
"timers.target"
|
"timers.target"
|
||||||
"umount.target"
|
"umount.target"
|
||||||
|
|
||||||
|
@ -384,6 +377,11 @@ in {
|
||||||
|
|
||||||
"/etc/sysctl.d/nixos.conf".text = "kernel.modprobe = /sbin/modprobe";
|
"/etc/sysctl.d/nixos.conf".text = "kernel.modprobe = /sbin/modprobe";
|
||||||
"/etc/modprobe.d/systemd.conf".source = "${cfg.package}/lib/modprobe.d/systemd.conf";
|
"/etc/modprobe.d/systemd.conf".source = "${cfg.package}/lib/modprobe.d/systemd.conf";
|
||||||
|
"/etc/modprobe.d/ubuntu.conf".source = pkgs.runCommand "initrd-kmod-blacklist-ubuntu" { } ''
|
||||||
|
${pkgs.buildPackages.perl}/bin/perl -0pe 's/## file: iwlwifi.conf(.+?)##/##/s;' $src > $out
|
||||||
|
'';
|
||||||
|
"/etc/modprobe.d/debian.conf".source = pkgs.kmod-debian-aliases;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
storePaths = [
|
storePaths = [
|
||||||
|
@ -397,12 +395,10 @@ in {
|
||||||
"${cfg.package}/lib/systemd/systemd-remount-fs"
|
"${cfg.package}/lib/systemd/systemd-remount-fs"
|
||||||
"${cfg.package}/lib/systemd/systemd-sulogin-shell"
|
"${cfg.package}/lib/systemd/systemd-sulogin-shell"
|
||||||
"${cfg.package}/lib/systemd/systemd-sysctl"
|
"${cfg.package}/lib/systemd/systemd-sysctl"
|
||||||
"${cfg.package}/lib/systemd/systemd-udevd"
|
|
||||||
"${cfg.package}/lib/systemd/systemd-vconsole-setup"
|
"${cfg.package}/lib/systemd/systemd-vconsole-setup"
|
||||||
|
|
||||||
# additional systemd directories
|
# additional systemd directories
|
||||||
"${cfg.package}/lib/systemd/system-generators"
|
"${cfg.package}/lib/systemd/system-generators"
|
||||||
"${cfg.package}/lib/udev"
|
|
||||||
|
|
||||||
# utilities needed by systemd
|
# utilities needed by systemd
|
||||||
"${cfg.package.util-linux}/bin/mount"
|
"${cfg.package.util-linux}/bin/mount"
|
||||||
|
|
Loading…
Reference in a new issue