chipsec: mark broken on hardened kernels older than 5.4

This commit is contained in:
Alexandre Iooss 2023-05-14 21:30:20 +02:00
parent e3d1294a9f
commit eae5f83649

View file

@ -74,5 +74,7 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/chipsec/chipsec";
maintainers = with maintainers; [ johnazoidberg erdnaxe ];
platforms = [ "x86_64-linux" ] ++ lib.optional (!withDriver) "x86_64-darwin";
# https://github.com/chipsec/chipsec/issues/1793
broken = withDriver && kernel.kernelOlder "5.4" && kernel.isHardened;
};
}