generated from divnix/digga
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hosts/framework: add default kernel patches
- Loading branch information
1 parent
0e0716f
commit 1488a59
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,7 @@ | |
linux_intel_fn = { | ||
fetchFromGitHub, | ||
buildLinux, | ||
lib, | ||
... | ||
} @ args: | ||
buildLinux (args | ||
|
@@ -95,13 +96,15 @@ | |
}; | ||
} | ||
// (args.argsOverride or {})); | ||
linux_intel = pkgs.callPackage linux_intel_fn {}; | ||
linux_intel = pkgs.callPackage linux_intel_fn { | ||
kernelPatches = pkgs.linuxPackages_6_4.kernel.kernelPatches; | ||
}; | ||
in | ||
pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor linux_intel); | ||
kernelPatches = [ | ||
# TODO wait for https://bugzilla.kernel.org/show_bug.cgi?id=217631 | ||
{ | ||
name = "framework-12th-tpm-tis-workaround"; | ||
name = "framework-12th-tpm-tis-workaround"; | ||
# https://lore.kernel.org/all/[email protected]/ | ||
patch = ../../../patches/framework-12th-tpm-tis-workaround.patch; | ||
} | ||
|