This commit is contained in:
Chloe Bethel 2025-08-29 18:52:30 +01:00
parent 0c7ec417a5
commit bd86a9a911
2 changed files with 11 additions and 7 deletions

6
flake.lock generated
View file

@ -17,11 +17,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1739114754,
"narHash": "sha256-SJhqKsnVleQKbD77pg53z9fjN4xfxq6ExDe+JJty2Jw=",
"lastModified": 1739447292,
"narHash": "sha256-YbKmtLZZFmLhi8vAO0uoRSRo4rR6dhkzShCg/R0Wn5E=",
"owner": "stary2001",
"repo": "nixpkgs",
"rev": "4490ff4c27c1bc175982b1b46d4d0b4c24f219e8",
"rev": "a7f2f6b1b09afc2cd865e95465fe59b20d4fd8f2",
"type": "github"
},
"original": {

View file

@ -12,12 +12,12 @@ lib.overrideDerivation
(buildLinux (
args
// {
version = "6.6.75-wiiu";
version = "6.6.80-wiiu";
src = fetchFromGitLab {
owner = "linux-wiiu";
repo = "linux-wiiu";
rev = "841387c876c096f8dd0df1756541aa57b1166577"; # rewrite-6.6
hash = "sha256-qrC9jdRGQusdZCYX/Lz1boPtEFGlc74A+lB3kEIDrSY=";
rev = "ba5cdf7b6862f51f76cdd6f8a51e54be58a1de85"; # rewrite-6.6
hash = "sha256-2PnH2BkcDv8hn0t6AwG+Lxtr924TGd2b6QzIpWFuPgc=";
};
autoModules = false;
@ -35,7 +35,7 @@ lib.overrideDerivation
}
];
#enableCommonConfig = false;
enableCommonConfig = false;
#structuredExtraConfig = import ./stripped-config.nix {
# version = "6.6.75-wiiu";
# inherit lib stdenv ;
@ -43,6 +43,10 @@ lib.overrideDerivation
# features = {}; # Ensure we know of all extra patches, etc.
#};
structuredExtraConfig = with lib.kernel; {
PPC_EARLY_DEBUG_DEFUSE = yes;
};
defconfig = "wiiu_defconfig";
}
))