From bd86a9a911c834fd0f497da74bd89d83d0823651 Mon Sep 17 00:00:00 2001 From: Chloe Bethel Date: Fri, 29 Aug 2025 18:52:30 +0100 Subject: [PATCH] dump --- flake.lock | 6 +++--- wiiu-kernel-6.6.nix | 12 ++++++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index c6b383c..05698a9 100644 --- a/flake.lock +++ b/flake.lock @@ -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": { diff --git a/wiiu-kernel-6.6.nix b/wiiu-kernel-6.6.nix index feefde5..c30bfd2 100644 --- a/wiiu-kernel-6.6.nix +++ b/wiiu-kernel-6.6.nix @@ -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"; } ))