linuxKernel.kernels.linux_5_19: drop

The 5.19.x series has reached EOL, and is no longer supported upstream.

Changed files
+8 -41
nixos
pkgs
os-specific
linux
top-level
+1 -1
nixos/tests/kernel-generic.nix
···
linux_5_4_hardened
linux_5_10_hardened
linux_5_15_hardened
-
linux_5_19_hardened
+
linux_6_0_hardened
linux_testing;
};
-10
pkgs/os-specific/linux/kernel/hardened/patches.json
···
"sha256": "0zymcp88654qk896djvc2ngdksvhkzh1ndhfk1dn5qqrqhha01wh",
"version": "5.15.76"
},
-
"5.19": {
-
"patch": {
-
"extra": "-hardened1",
-
"name": "linux-hardened-5.19.17-hardened1.patch",
-
"sha256": "0fs9zdwxbcc3fi4w1qylvvv387ih3g0dnagw5pvq3r2k2g5fflya",
-
"url": "https://github.com/anthraxx/linux-hardened/releases/download/5.19.17-hardened1/linux-hardened-5.19.17-hardened1.patch"
-
},
-
"sha256": "12cly10lad12idjwlgh2g0pp4hhj57h2qi4fy6jg1lbsm62b6fy9",
-
"version": "5.19.17"
-
},
"5.4": {
"patch": {
"extra": "-hardened1",
-18
pkgs/os-specific/linux/kernel/linux-5.19.nix
···
-
{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
-
-
with lib;
-
-
buildLinux (args // rec {
-
version = "5.19.17";
-
-
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
-
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
-
-
# branchVersion needs to be x.y
-
extraMeta.branch = versions.majorMinor version;
-
-
src = fetchurl {
-
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-
sha256 = "12cly10lad12idjwlgh2g0pp4hhj57h2qi4fy6jg1lbsm62b6fy9";
-
};
-
} // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/zfs/default.nix
···
, enablePython ? true
# for determining the latest compatible linuxPackages
-
, linuxPackages_5_19 ? pkgs.linuxKernel.packages.linux_5_19
+
, linuxPackages_5_15 ? pkgs.linuxKernel.packages.linux_5_15
, linuxPackages_6_0 ? pkgs.linuxKernel.packages.linux_6_0
}:
···
zfsStable = common {
# check the release notes for compatible kernels
kernelCompatible = kernel.kernelOlder "5.20";
-
latestCompatibleLinuxPackages = linuxPackages_5_19;
+
latestCompatibleLinuxPackages = linuxPackages_5_15;
# this package should point to the latest release.
version = "2.1.6";
+5 -10
pkgs/top-level/linux-kernels.nix
···
linux_5_18 = throw "linux 5.18 was removed because it has reached its end of life upstream";
-
linux_5_19 = callPackage ../os-specific/linux/kernel/linux-5.19.nix {
-
kernelPatches = [
-
kernelPatches.bridge_stp_helper
-
kernelPatches.request_key_helper
-
];
-
};
+
linux_5_19 = throw "linux 5.19 was removed because it has reached its end of life upstream";
linux_6_0 = callPackage ../os-specific/linux/kernel/linux-6.0.nix {
kernelPatches = [
···
else testing;
linux_testing_bcachefs = callPackage ../os-specific/linux/kernel/linux-testing-bcachefs.nix rec {
-
kernel = linux_5_19;
+
kernel = linux_6_0;
kernelPatches = kernel.kernelPatches;
};
···
linux_5_10_hardened = hardenedKernelFor kernels.linux_5_10 { };
linux_5_15_hardened = hardenedKernelFor kernels.linux_5_15 { };
linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream";
-
linux_5_19_hardened = hardenedKernelFor kernels.linux_5_19 { };
+
linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream";
linux_6_0_hardened = hardenedKernelFor kernels.linux_6_0 { };
}));
···
linux_5_16 = throw "linux 5.16 was removed because it reached its end of life upstream"; # Added 2022-04-23
linux_5_17 = throw "linux 5.17 was removed because it reached its end of life upstream"; # Added 2022-06-23
linux_5_18 = throw "linux 5.18 was removed because it reached its end of life upstream"; # Added 2022-09-17
-
linux_5_19 = recurseIntoAttrs (packagesFor kernels.linux_5_19);
+
linux_5_19 = throw "linux 5.19 was removed because it reached its end of life upstream"; # Added 2022-11-01
linux_6_0 = recurseIntoAttrs (packagesFor kernels.linux_6_0);
};
···
linux_5_10_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_10 { });
linux_5_15_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_15 { });
linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream";
-
linux_5_19_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_19 { });
+
linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream";
linux_6_0_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_6_0 { });
linux_zen = recurseIntoAttrs (packagesFor kernels.linux_zen);