···11-{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
22-33-with lib;
44-55-buildLinux (args // rec {
66- version = "5.19.17";
77-88- # modDirVersion needs to be x.y.z, will automatically add .0 if needed
99- modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
1010-1111- # branchVersion needs to be x.y
1212- extraMeta.branch = versions.majorMinor version;
1313-1414- src = fetchurl {
1515- url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
1616- sha256 = "12cly10lad12idjwlgh2g0pp4hhj57h2qi4fy6jg1lbsm62b6fy9";
1717- };
1818-} // (args.argsOverride or { }))
+2-2
pkgs/os-specific/linux/zfs/default.nix
···1616, enablePython ? true
17171818# for determining the latest compatible linuxPackages
1919-, linuxPackages_5_19 ? pkgs.linuxKernel.packages.linux_5_19
1919+, linuxPackages_5_15 ? pkgs.linuxKernel.packages.linux_5_15
2020, linuxPackages_6_0 ? pkgs.linuxKernel.packages.linux_6_0
2121}:
2222···218218 zfsStable = common {
219219 # check the release notes for compatible kernels
220220 kernelCompatible = kernel.kernelOlder "5.20";
221221- latestCompatibleLinuxPackages = linuxPackages_5_19;
221221+ latestCompatibleLinuxPackages = linuxPackages_5_15;
222222223223 # this package should point to the latest release.
224224 version = "2.1.6";
+5-10
pkgs/top-level/linux-kernels.nix
···166166167167 linux_5_18 = throw "linux 5.18 was removed because it has reached its end of life upstream";
168168169169- linux_5_19 = callPackage ../os-specific/linux/kernel/linux-5.19.nix {
170170- kernelPatches = [
171171- kernelPatches.bridge_stp_helper
172172- kernelPatches.request_key_helper
173173- ];
174174- };
169169+ linux_5_19 = throw "linux 5.19 was removed because it has reached its end of life upstream";
175170176171 linux_6_0 = callPackage ../os-specific/linux/kernel/linux-6.0.nix {
177172 kernelPatches = [
···193188 else testing;
194189195190 linux_testing_bcachefs = callPackage ../os-specific/linux/kernel/linux-testing-bcachefs.nix rec {
196196- kernel = linux_5_19;
191191+ kernel = linux_6_0;
197192 kernelPatches = kernel.kernelPatches;
198193 };
199194···248243 linux_5_10_hardened = hardenedKernelFor kernels.linux_5_10 { };
249244 linux_5_15_hardened = hardenedKernelFor kernels.linux_5_15 { };
250245 linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream";
251251- linux_5_19_hardened = hardenedKernelFor kernels.linux_5_19 { };
246246+ linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream";
252247 linux_6_0_hardened = hardenedKernelFor kernels.linux_6_0 { };
253248254249 }));
···535530 linux_5_16 = throw "linux 5.16 was removed because it reached its end of life upstream"; # Added 2022-04-23
536531 linux_5_17 = throw "linux 5.17 was removed because it reached its end of life upstream"; # Added 2022-06-23
537532 linux_5_18 = throw "linux 5.18 was removed because it reached its end of life upstream"; # Added 2022-09-17
538538- linux_5_19 = recurseIntoAttrs (packagesFor kernels.linux_5_19);
533533+ linux_5_19 = throw "linux 5.19 was removed because it reached its end of life upstream"; # Added 2022-11-01
539534 linux_6_0 = recurseIntoAttrs (packagesFor kernels.linux_6_0);
540535 };
541536···575570 linux_5_10_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_10 { });
576571 linux_5_15_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_15 { });
577572 linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream";
578578- linux_5_19_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_19 { });
573573+ linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream";
579574 linux_6_0_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_6_0 { });
580575581576 linux_zen = recurseIntoAttrs (packagesFor kernels.linux_zen);