lol

linux_4_14: remove

ajs124 89e97697 2d1830dc

+2 -21
-1
nixos/tests/kernel-generic.nix
··· 25 25 }) args); 26 26 kernels = pkgs.linuxKernel.vanillaPackages // { 27 27 inherit (pkgs.linuxKernel.packages) 28 - linux_4_14_hardened 29 28 linux_4_19_hardened 30 29 linux_5_4_hardened 31 30 linux_5_10_hardened
-2
pkgs/top-level/all-packages.nix
··· 28114 28114 # hardened kernels 28115 28115 linuxPackages_hardened = linuxKernel.packages.linux_hardened; 28116 28116 linux_hardened = linuxPackages_hardened.kernel; 28117 - linuxPackages_4_14_hardened = linuxKernel.packages.linux_4_14_hardened; 28118 - linux_4_14_hardened = linuxPackages_4_14_hardened.kernel; 28119 28117 linuxPackages_4_19_hardened = linuxKernel.packages.linux_4_19_hardened; 28120 28118 linux_4_19_hardened = linuxPackages_4_19_hardened.kernel; 28121 28119 linuxPackages_5_4_hardened = linuxKernel.packages.linux_5_4_hardened;
+2 -18
pkgs/top-level/linux-kernels.nix
··· 96 96 rpiVersion = 4; 97 97 }; 98 98 99 - linux_4_14 = callPackage ../os-specific/linux/kernel/mainline.nix { 100 - branch = "4.14"; 101 - kernelPatches = 102 - [ kernelPatches.bridge_stp_helper 103 - kernelPatches.request_key_helper 104 - # See pkgs/os-specific/linux/kernel/cpu-cgroup-v2-patches/README.md 105 - # when adding a new linux version 106 - kernelPatches.cpu-cgroup-v2."4.11" 107 - kernelPatches.modinst_arg_list_too_long 108 - ]; 109 - }; 110 - 111 99 linux_4_19 = callPackage ../os-specific/linux/kernel/mainline.nix { 112 100 branch = "4.19"; 113 101 kernelPatches = ··· 261 249 262 250 linux_hardened = hardenedKernelFor packageAliases.linux_default.kernel { }; 263 251 264 - linux_4_14_hardened = hardenedKernelFor kernels.linux_4_14 { 265 - stdenv = gcc10Stdenv; 266 - buildPackages = buildPackages // { stdenv = buildPackages.gcc10Stdenv; }; 267 - }; 268 252 linux_4_19_hardened = hardenedKernelFor kernels.linux_4_19 { 269 253 stdenv = gcc10Stdenv; 270 254 buildPackages = buildPackages // { stdenv = buildPackages.gcc10Stdenv; }; ··· 280 264 281 265 } // lib.optionalAttrs config.allowAliases { 282 266 linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; 267 + linux_4_14 = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; 283 268 linux_5_18 = throw "linux 5.18 was removed because it has reached its end of life upstream"; 284 269 linux_5_19 = throw "linux 5.19 was removed because it has reached its end of life upstream"; 285 270 linux_6_0 = throw "linux 6.0 was removed because it has reached its end of life upstream"; ··· 590 575 591 576 vanillaPackages = { 592 577 # recurse to build modules for the kernels 593 - linux_4_14 = recurseIntoAttrs (packagesFor kernels.linux_4_14); 594 578 linux_4_19 = recurseIntoAttrs (packagesFor kernels.linux_4_19); 595 579 linux_5_4 = recurseIntoAttrs (packagesFor kernels.linux_5_4); 596 580 linux_5_10 = recurseIntoAttrs (packagesFor kernels.linux_5_10); ··· 599 583 linux_6_5 = recurseIntoAttrs (packagesFor kernels.linux_6_5); 600 584 } // lib.optionalAttrs config.allowAliases { 601 585 linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; # Added 2022-11-08 586 + linux_4_14 = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; # Added 2023-10-11 602 587 linux_5_18 = throw "linux 5.18 was removed because it reached its end of life upstream"; # Added 2022-09-17 603 588 linux_5_19 = throw "linux 5.19 was removed because it reached its end of life upstream"; # Added 2022-11-01 604 589 linux_6_0 = throw "linux 6.0 was removed because it reached its end of life upstream"; # Added 2023-01-20 ··· 630 615 631 616 linux_hardened = recurseIntoAttrs (packagesFor kernels.linux_hardened); 632 617 633 - linux_4_14_hardened = recurseIntoAttrs (packagesFor kernels.linux_4_14_hardened); 634 618 linux_4_19_hardened = recurseIntoAttrs (packagesFor kernels.linux_4_19_hardened); 635 619 linux_5_4_hardened = recurseIntoAttrs (packagesFor kernels.linux_5_4_hardened); 636 620 linux_5_10_hardened = recurseIntoAttrs (packagesFor kernels.linux_5_10_hardened);