b036fe2fed
In recent versions of chipsec the build scripts have changed and we haven't built the kernel module in nixpkgs. Upstream has changed the variable for the kernel sources. Additional patches are needed as a workaround. Those issues should be fixed upstream.
14 lines
372 B
Diff
14 lines
372 B
Diff
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):
|