Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.7 KiB
Nix
63 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
buildLinux,
|
|
fetchurl,
|
|
kernelPatches ? [ ],
|
|
structuredExtraConfig ? { },
|
|
extraMeta ? { },
|
|
argsOverride ? { },
|
|
...
|
|
}@args:
|
|
|
|
let
|
|
version = "5.10.240-rt134"; # updated by ./update-rt.sh
|
|
branch = lib.versions.majorMinor version;
|
|
kversion = builtins.elemAt (lib.splitString "-" version) 0;
|
|
in
|
|
buildLinux (
|
|
args
|
|
// {
|
|
inherit version;
|
|
pname = "linux-rt";
|
|
|
|
# modDirVersion needs a patch number, change X.Y-rtZ to X.Y.0-rtZ.
|
|
modDirVersion = lib.versions.pad 3 version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
|
|
sha256 = "04sdcf4aqsqchii38anzmk9f9x65wv8q1x3m9dandmi6fabw724d";
|
|
};
|
|
|
|
kernelPatches =
|
|
let
|
|
rt-patch = {
|
|
name = "rt";
|
|
patch = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
|
|
sha256 = "0f2wq6w0707qn798a9lk7r31mfmdll6xwnxq8fy86574gl08ah79";
|
|
};
|
|
};
|
|
in
|
|
[ rt-patch ] ++ kernelPatches;
|
|
|
|
isLTS = true;
|
|
structuredExtraConfig =
|
|
with lib.kernel;
|
|
{
|
|
PREEMPT_RT = yes;
|
|
# Fix error: unused option: PREEMPT_RT.
|
|
EXPERT = yes; # PREEMPT_RT depends on it (in kernel/Kconfig.preempt)
|
|
# Fix error: option not set correctly: PREEMPT_VOLUNTARY (wanted 'y', got 'n').
|
|
PREEMPT_VOLUNTARY = lib.mkForce no; # PREEMPT_RT deselects it.
|
|
# Fix error: unused option: RT_GROUP_SCHED.
|
|
RT_GROUP_SCHED = lib.mkForce (option no); # Removed by sched-disable-rt-group-sched-on-rt.patch.
|
|
}
|
|
// structuredExtraConfig;
|
|
|
|
extraMeta = extraMeta // {
|
|
inherit branch;
|
|
};
|
|
}
|
|
// argsOverride
|
|
)
|