Merge pull request #117624 from fabaff/bump-chipsec

This commit is contained in:
Daniel Schaefer 2021-04-12 00:06:11 +08:00 committed by GitHub
commit f17647c892
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 64 additions and 13 deletions

View file

@ -0,0 +1,13 @@
diff --git i/setup.py w/setup.py
index cfe2665..5795874 100755
--- i/setup.py
+++ w/setup.py
@@ -179,7 +179,7 @@ class build_ext(_build_ext):
driver_build_function = self._build_win_driver
self._build_win_compression()
- if not self.skip_driver:
+ if True:
driver_build_function()
def get_source_files(self):

View file

@ -1,29 +1,54 @@
{ stdenv, lib, fetchFromGitHub, python2Packages, nasm, libelf { lib
, kernel ? null, withDriver ? false }: , stdenv
python2Packages.buildPythonApplication rec { , fetchFromGitHub
, kernel ? null
, libelf
, nasm
, python3
, withDriver ? false
}:
python3.pkgs.buildPythonApplication rec {
pname = "chipsec"; pname = "chipsec";
version = "1.5.1"; version = "1.6.1";
disabled = !stdenv.isLinux;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "chipsec"; owner = "chipsec";
repo = "chipsec"; repo = "chipsec";
rev = version; rev = version;
sha256 = "1rxr9i08a22m15slvlkrhnki30jixi2ds096kmmc2nqzfr9yibmb"; sha256 = "01sp24z63r3nqxx57zc4873b8i5dqipy7yrxzrwjns531vznhiy2";
}; };
disabled = !stdenv.isLinux; patches = lib.optionals withDriver [ ./ko-path.diff ./compile-ko.diff ];
KSRC = lib.optionalString withDriver "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
nativeBuildInputs = [ nativeBuildInputs = [
nasm libelf libelf
nasm
]; ];
setupPyBuildFlags = lib.optional (!withDriver) "--skip-driver"; checkInputs = [
python3.pkgs.distro
python3.pkgs.pytestCheckHook
];
checkPhase = "python setup.py build " preBuild = lib.optionalString withDriver ''
+ lib.optionalString (!withDriver) "--skip-driver " export CHIPSEC_BUILD_LIB=$(mktemp -d)
+ "test"; mkdir -p $CHIPSEC_BUILD_LIB/chipsec/helper/linux
'';
KERNEL_SRC_DIR = lib.optionalString withDriver "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; preInstall = lib.optionalString withDriver ''
mkdir -p $out/${python3.pkgs.python.sitePackages}/drivers/linux
mv $CHIPSEC_BUILD_LIB/chipsec/helper/linux/chipsec.ko \
$out/${python3.pkgs.python.sitePackages}/drivers/linux/chipsec.ko
'';
setupPyBuildFlags = [ "--build-lib=$CHIPSEC_BUILD_LIB" ]
++ lib.optional (!withDriver) "--skip-driver";
pythonImportsCheck = [ "chipsec" ];
meta = with lib; { meta = with lib; {
description = "Platform Security Assessment Framework"; description = "Platform Security Assessment Framework";
@ -34,7 +59,7 @@ python2Packages.buildPythonApplication rec {
interfaces, and forensic capabilities. It can be run on Windows, Linux, interfaces, and forensic capabilities. It can be run on Windows, Linux,
Mac OS X and UEFI shell. Mac OS X and UEFI shell.
''; '';
license = licenses.gpl2; license = licenses.gpl2Only;
homepage = "https://github.com/chipsec/chipsec"; homepage = "https://github.com/chipsec/chipsec";
maintainers = with maintainers; [ johnazoidberg ]; maintainers = with maintainers; [ johnazoidberg ];
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all; platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;

View file

@ -0,0 +1,13 @@
diff --git c/chipsec/helper/linux/linuxhelper.py i/chipsec/helper/linux/linuxhelper.py
index c51b5e6..4be05ea 100644
--- c/chipsec/helper/linux/linuxhelper.py
+++ i/chipsec/helper/linux/linuxhelper.py
@@ -152,7 +152,7 @@ class LinuxHelper(Helper):
else:
a2 = "a2=0x{}".format(phys_mem_access_prot)
- driver_path = os.path.join(chipsec.file.get_main_dir(), "chipsec", "helper", "linux", "chipsec.ko" )
+ driver_path = os.path.join(chipsec.file.get_main_dir(), "drivers", "linux", "chipsec.ko" )
if not os.path.exists(driver_path):
driver_path += ".xz"
if not os.path.exists(driver_path):