42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ lib, buildLinux, fetchurl
|
|
, kernelPatches ? [ ]
|
|
, structuredExtraConfig ? {}
|
|
, extraMeta ? {}
|
|
, argsOverride ? {}
|
|
, ... } @ args:
|
|
|
|
let
|
|
version = "5.4.115-rt57"; # updated by ./update-rt.sh
|
|
branch = lib.versions.majorMinor version;
|
|
kversion = builtins.elemAt (lib.splitString "-" version) 0;
|
|
in buildLinux (args // {
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
|
|
sha256 = "1llxk04vlpi7a4ca2f5vlcxfn68n8yhmsar3hsl259i7hms28isv";
|
|
};
|
|
|
|
kernelPatches = let rt-patch = {
|
|
name = "rt";
|
|
patch = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
|
|
sha256 = "1xh7xi27q58njhfayi2lnk4id7hnlklkgh2zx012gxv4ari76g0k";
|
|
};
|
|
}; in [ rt-patch ] ++ lib.remove rt-patch kernelPatches;
|
|
|
|
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)
|