Kernel updates for 2025-10-02 (#448034)

K900 326114df 5c45d8c8

Changed files
+35 -15
pkgs
+4
pkgs/os-specific/linux/kernel/common-config.nix
···
DAMON_DBGFS = whenBetween "5.15" "6.9" yes;
DAMON_RECLAIM = whenAtLeast "5.16" yes;
DAMON_LRU_SORT = whenAtLeast "6.0" yes;
+
DAMON_STAT = whenAtLeast "6.17" yes;
# Support recovering from memory failures on systems with ECC and MCA recovery.
MEMORY_FAILURE = yes;
···
# Enable AMD Wi-Fi RF band mitigations
# See https://cateee.net/lkddb/web-lkddb/AMD_WBRF.html
AMD_WBRF = whenAtLeast "6.8" yes;
+
+
# Enable AMD heterogeneous core hardware feedback interface
+
AMD_HFI = whenAtLeast "6.17" yes;
# Enable Intel Turbo Boost Max 3.0
INTEL_TURBO_MAX_3 = yes;
+19 -14
pkgs/os-specific/linux/kernel/kernels-org.json
···
"lts": false
},
"6.1": {
-
"version": "6.1.154",
-
"hash": "sha256:165im36dhnvhrfkn4x77ds6cgisn40d1cwxvxsci5lnhqf9bl6kg",
+
"version": "6.1.155",
+
"hash": "sha256:0wsw99h2jsrcx9fff59nqjx66l40vywj8qi3j6yvqpq8xsp8g4y2",
"lts": true
},
"5.15": {
-
"version": "5.15.193",
-
"hash": "sha256:168ymh51hm0l6pd9g2kc33ji28gznc25rwzj7rvhnw82z79640n7",
+
"version": "5.15.194",
+
"hash": "sha256:0zi6ihvjmaf940arnc7jjvdqrjf3cvkc9mqc8n24dz85vam6z39l",
"lts": true
},
"5.10": {
-
"version": "5.10.244",
-
"hash": "sha256:1h3dqaran5zrfgs0vybwq576yka8s9jirahiy3bb7hpm1763f2i1",
+
"version": "5.10.245",
+
"hash": "sha256:17wxs8i8vd5ivv99ra0sri3wmkw5c22wsaw8nf1xcvys2kmpa7hk",
"lts": true
},
"5.4": {
-
"version": "5.4.299",
-
"hash": "sha256:0bdzy3bpywm24nx73ah9smwmmlmyhvlf5xcp2kk1z54dxfp9bpl8",
+
"version": "5.4.300",
+
"hash": "sha256:0nl1l689d4jq2l39v816yy7z5lzc5dvv8aqn85xlv4najc022jcr",
"lts": true
},
"6.6": {
-
"version": "6.6.108",
-
"hash": "sha256:19k834gd9galmzl7gq0v25nv785ld7ryygrmgdh1cpb9m8rd6730",
+
"version": "6.6.109",
+
"hash": "sha256:1x1h2x04xvds8k59x36zqxzbj4cm6yl5l6xacgfyxzccfycwscbp",
"lts": true
},
"6.12": {
-
"version": "6.12.49",
-
"hash": "sha256:09jm892q3b275liyzmycczg6nyjg1ramsma920jf5k6s8vhj2ii3",
+
"version": "6.12.50",
+
"hash": "sha256:19bjzhxasj4r6m1lhsa486a96axfigbm06kqa2lwa7y2s5sbsdf4",
"lts": true
},
"6.16": {
-
"version": "6.16.9",
-
"hash": "sha256:13g59jvc6kvp8dzl6ysmzrpq4nh9xvy5va5avrsn6iq5ryiwij3s",
+
"version": "6.16.10",
+
"hash": "sha256:1wm8azbwy131cwvxab66v2ccybfkaq7gkxili0p6hjqyhnlbn1mb",
+
"lts": false
+
},
+
"6.17": {
+
"version": "6.17",
+
"hash": "sha256:19spyyknps9dzb6mz5sk685a505hzqi144lqc0rdi6f9l5k72q4v",
"lts": false
}
}
+2
pkgs/top-level/aliases.nix
···
linuxPackages_6_14 = linuxKernel.packages.linux_6_14;
linuxPackages_6_15 = linuxKernel.packages.linux_6_15;
linuxPackages_6_16 = linuxKernel.packages.linux_6_16;
+
linuxPackages_6_17 = linuxKernel.packages.linux_6_17;
linuxPackages_ham = linuxKernel.packages.linux_ham;
linuxPackages_rpi0 = linuxKernel.packages.linux_rpi1;
linuxPackages_rpi02w = linuxKernel.packages.linux_rpi3;
···
linux_6_14 = linuxKernel.kernels.linux_6_14;
linux_6_15 = linuxKernel.kernels.linux_6_15;
linux_6_16 = linuxKernel.kernels.linux_6_16;
+
linux_6_17 = linuxKernel.kernels.linux_6_17;
linux_ham = linuxKernel.kernels.linux_ham;
linux_rpi0 = linuxKernel.kernels.linux_rpi1;
linux_rpi02w = linuxKernel.kernels.linux_rpi3;
+10 -1
pkgs/top-level/linux-kernels.nix
···
];
};
+
linux_6_17 = callPackage ../os-specific/linux/kernel/mainline.nix {
+
branch = "6.17";
+
kernelPatches = [
+
kernelPatches.bridge_stp_helper
+
kernelPatches.request_key_helper
+
];
+
};
+
linux_testing =
let
testing = callPackage ../os-specific/linux/kernel/mainline.nix {
···
linux_6_6 = recurseIntoAttrs (packagesFor kernels.linux_6_6);
linux_6_12 = recurseIntoAttrs (packagesFor kernels.linux_6_12);
linux_6_16 = recurseIntoAttrs (packagesFor kernels.linux_6_16);
+
linux_6_17 = recurseIntoAttrs (packagesFor kernels.linux_6_17);
}
// lib.optionalAttrs config.allowAliases {
linux_4_19 = throw "linux 4.19 was removed because it will reach its end of life within 24.11"; # Added 2024-09-21
···
packageAliases = {
linux_default = packages.linux_6_12;
# Update this when adding the newest kernel major version!
-
linux_latest = packages.linux_6_16;
+
linux_latest = packages.linux_6_17;
linux_rt_default = packages.linux_rt_5_15;
linux_rt_latest = packages.linux_rt_6_6;
}