Merge pull request #214238 from adamcstephens/s0ix/init
s0ix-selftest-tool: init at 2022-11-04
This commit is contained in:
commit
9f72276259
2 changed files with 83 additions and 0 deletions
81
pkgs/tools/system/s0ix-selftest-tool/default.nix
Normal file
81
pkgs/tools/system/s0ix-selftest-tool/default.nix
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
acpica-tools,
|
||||
bash,
|
||||
bc,
|
||||
coreutils,
|
||||
fetchFromGitHub,
|
||||
gawk,
|
||||
gnugrep,
|
||||
gnused,
|
||||
linuxPackages,
|
||||
lib,
|
||||
pciutils,
|
||||
powertop,
|
||||
resholve,
|
||||
stdenv,
|
||||
util-linux,
|
||||
xorg,
|
||||
xxd,
|
||||
}:
|
||||
resholve.mkDerivation {
|
||||
pname = "s0ix-selftest-tool";
|
||||
version = "unstable-2022-11-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "intel";
|
||||
repo = "S0ixSelftestTool";
|
||||
rev = "1b6db3c3470a3a74b052cb728a544199661d18ec";
|
||||
hash = "sha256-w97jfdppW8kC8K8XvBntmkfntIctXDQCWmvug+H1hKA=";
|
||||
};
|
||||
|
||||
# don't use the bundled turbostat binary
|
||||
postPatch = ''
|
||||
substituteInPlace s0ix-selftest-tool.sh --replace '"$DIR"/turbostat' 'turbostat'
|
||||
substituteInPlace s0ix-selftest-tool.sh --replace 'sudo ' ""
|
||||
|
||||
'';
|
||||
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm555 s0ix-selftest-tool.sh "$out/bin/s0ix-selftest-tool"
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
solutions = {
|
||||
default = {
|
||||
scripts = ["bin/s0ix-selftest-tool"];
|
||||
interpreter = lib.getExe bash;
|
||||
inputs = [
|
||||
acpica-tools
|
||||
bc
|
||||
coreutils
|
||||
gawk
|
||||
gnugrep
|
||||
gnused
|
||||
linuxPackages.turbostat
|
||||
pciutils
|
||||
powertop
|
||||
util-linux
|
||||
xorg.xset
|
||||
xxd
|
||||
];
|
||||
execer = [
|
||||
"cannot:${util-linux}/bin/dmesg"
|
||||
"cannot:${powertop}/bin/powertop"
|
||||
"cannot:${util-linux}/bin/rtcwake"
|
||||
"cannot:${linuxPackages.turbostat}/bin/turbostat"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/intel/S0ixSelftestTool";
|
||||
description = "A tool for testing the S2idle path CPU Package C-state and S0ix failures";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [adamcstephens];
|
||||
};
|
||||
}
|
|
@ -1527,6 +1527,8 @@ with pkgs;
|
|||
|
||||
redfang = callPackage ../tools/networking/redfang { };
|
||||
|
||||
s0ix-selftest-tool = callPackage ../tools/system/s0ix-selftest-tool { };
|
||||
|
||||
scarab = callPackage ../tools/games/scarab { };
|
||||
|
||||
sdbus-cpp = callPackage ../development/libraries/sdbus-cpp { };
|
||||
|
|
Loading…
Reference in a new issue