add 6.6, clean up old code
This commit is contained in:
parent
cbfaf9b9d9
commit
a661f9d183
7 changed files with 28 additions and 153 deletions
20
kernel/5.3-aeolia.nix
Normal file
20
kernel/5.3-aeolia.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ fetchFromGitHub, linuxManualConfig, runCommand, linux-firmware, ... }:
|
||||
(linuxManualConfig rec {
|
||||
src = fetchFromGitHub {
|
||||
owner = "Nomkid";
|
||||
repo = "ps4-linux-nixos";
|
||||
rev = "refs/heads/aeolia";
|
||||
hash = "sha256-Gdf6pBWD885ZXUuswSQQZQgpNp1t5dn6rHs0p2DqKcw=";
|
||||
};
|
||||
|
||||
version = "5.3.18-PS4";
|
||||
modDirVersion = "5.3.18";
|
||||
|
||||
configfile = runCommand "concat-config" {} ''
|
||||
cat "${src}/config" > $out
|
||||
echo "CONFIG_EXTRA_FIRMWARE_DIR=\"${linux-firmware}/lib/firmware\"" >> $out
|
||||
'';
|
||||
allowImportFromDerivation = true;
|
||||
}).overrideAttrs {
|
||||
NIX_CFLAGS_COMPILE = "-Wno-redundant-decls -Wno-use-after-free";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue