mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
clear linux patches testing
This commit is contained in:
parent
b4cd13418b
commit
354eecbdfb
2 changed files with 19 additions and 0 deletions
|
|
@ -165,6 +165,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
boot = {
|
boot = {
|
||||||
|
kernelPatches = [ self.packages.clear-patches ];
|
||||||
kernelModules = [ "amdgpu" ];
|
kernelModules = [ "amdgpu" ];
|
||||||
initrd = {
|
initrd = {
|
||||||
availableKernelModules = [
|
availableKernelModules = [
|
||||||
|
|
|
||||||
18
packages/clear-patches/package.nix
Normal file
18
packages/clear-patches/package.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{ runCommand, fetchFromGitHub }:
|
||||||
|
|
||||||
|
runCommand "kernel-clr-combined.patch"
|
||||||
|
{
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "clearlinux-pkgs";
|
||||||
|
repo = "linux";
|
||||||
|
rev = "65f5cc7a18b6eb108e2b458c5c9d244e2aa8b587";
|
||||||
|
hash = "sha256-X8H4j7GpMKVdrwSQxbzUVt7m5mzP/53Nx67YG914Zv0=";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
''
|
||||||
|
cd "$src"
|
||||||
|
grep -o '^%patch[0-9]*' linux.spec \
|
||||||
|
| grep -o '[0-9]*' \
|
||||||
|
| xargs -I '{}' grep '^Patch{}:' linux.spec \
|
||||||
|
| cut -d" " -f2- | xargs cat >> $out
|
||||||
|
''
|
||||||
Loading…
Add table
Add a link
Reference in a new issue