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
60 lines
1.6 KiB
Nix
60 lines
1.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchpatch,
|
|
kernel,
|
|
rr,
|
|
}:
|
|
|
|
/*
|
|
The python script shouldn't be needed for users of this kernel module.
|
|
https://github.com/rr-debugger/rr/blob/master/scripts/zen_workaround.py
|
|
The module itself is called "zen_workaround" (a bit generic unfortunately).
|
|
*/
|
|
stdenv.mkDerivation {
|
|
pname = "rr-zen_workaround";
|
|
|
|
inherit (rr) src version;
|
|
sourceRoot = "${rr.src.name}/third-party/zen-pmu-workaround";
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "kernel-6.16.patch";
|
|
url = "https://github.com/rr-debugger/rr/commit/86aa1ebe03c6a7f60eb65249233f866fd3da8316.diff";
|
|
stripLen = 2;
|
|
hash = "sha256-zj5MNwlZmWnagu0tE5Jl5a48wEF0lqNTh4KcbhmOkOo=";
|
|
})
|
|
];
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
|
|
makeFlags = [
|
|
"-C${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
];
|
|
postConfigure = ''
|
|
appendToVar makeFlags "M=$(pwd)"
|
|
'';
|
|
buildFlags = [ "modules" ];
|
|
|
|
installPhase =
|
|
let
|
|
modDestDir = "$out/lib/modules/${kernel.modDirVersion}/kernel"; # TODO: longer path?
|
|
in
|
|
''
|
|
runHook preInstall
|
|
mkdir -p "${modDestDir}"
|
|
cp *.ko "${modDestDir}/"
|
|
find ${modDestDir} -name '*.ko' -exec xz -f '{}' \;
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Kernel module supporting the rr debugger on (some) AMD Zen-based CPUs";
|
|
homepage = "https://github.com/rr-debugger/rr/wiki/Zen#kernel-module";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.vcunat ];
|
|
platforms = [ "x86_64-linux" ];
|
|
broken = versionOlder kernel.version "4.19"; # 4.14 breaks and 4.19 works
|
|
};
|
|
}
|