linux_6_6: init at 6.6
This commit is contained in:
parent
059348710f
commit
419eba9ab1
@ -34,5 +34,9 @@
|
|||||||
"4.14": {
|
"4.14": {
|
||||||
"version": "4.14.328",
|
"version": "4.14.328",
|
||||||
"hash": "sha256:1igcpvnhwwrczfdsafmszvi0456k7f6j4cgpfw6v6afw09p95d8x"
|
"hash": "sha256:1igcpvnhwwrczfdsafmszvi0456k7f6j4cgpfw6v6afw09p95d8x"
|
||||||
|
},
|
||||||
|
"6.6": {
|
||||||
|
"version": "6.6",
|
||||||
|
"hash": "sha256:1l2nisx9lf2vdgkq910n5ldbi8z25ky1zvl67zgwg2nxcdna09nr"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -493,6 +493,7 @@ mapAliases ({
|
|||||||
linuxPackages_6_3 = linuxKernel.packages.linux_6_3;
|
linuxPackages_6_3 = linuxKernel.packages.linux_6_3;
|
||||||
linuxPackages_6_4 = linuxKernel.packages.linux_6_4;
|
linuxPackages_6_4 = linuxKernel.packages.linux_6_4;
|
||||||
linuxPackages_6_5 = linuxKernel.packages.linux_6_5;
|
linuxPackages_6_5 = linuxKernel.packages.linux_6_5;
|
||||||
|
linuxPackages_6_6 = linuxKernel.packages.linux_6_6;
|
||||||
linuxPackages_rpi0 = linuxKernel.packages.linux_rpi1;
|
linuxPackages_rpi0 = linuxKernel.packages.linux_rpi1;
|
||||||
linuxPackages_rpi02w = linuxKernel.packages.linux_rpi3;
|
linuxPackages_rpi02w = linuxKernel.packages.linux_rpi3;
|
||||||
linuxPackages_rpi1 = linuxKernel.packages.linux_rpi1;
|
linuxPackages_rpi1 = linuxKernel.packages.linux_rpi1;
|
||||||
@ -517,6 +518,7 @@ mapAliases ({
|
|||||||
linux_6_3 = linuxKernel.kernels.linux_6_3;
|
linux_6_3 = linuxKernel.kernels.linux_6_3;
|
||||||
linux_6_4 = linuxKernel.kernels.linux_6_4;
|
linux_6_4 = linuxKernel.kernels.linux_6_4;
|
||||||
linux_6_5 = linuxKernel.kernels.linux_6_5;
|
linux_6_5 = linuxKernel.kernels.linux_6_5;
|
||||||
|
linux_6_6 = linuxKernel.kernels.linux_6_6;
|
||||||
linux_rpi0 = linuxKernel.kernels.linux_rpi1;
|
linux_rpi0 = linuxKernel.kernels.linux_rpi1;
|
||||||
linux_rpi02w = linuxKernel.kernels.linux_rpi3;
|
linux_rpi02w = linuxKernel.kernels.linux_rpi3;
|
||||||
linux_rpi1 = linuxKernel.kernels.linux_rpi1;
|
linux_rpi1 = linuxKernel.kernels.linux_rpi1;
|
||||||
|
@ -178,6 +178,14 @@ in {
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
linux_6_6 = callPackage ../os-specific/linux/kernel/mainline.nix {
|
||||||
|
branch = "6.6";
|
||||||
|
kernelPatches = [
|
||||||
|
kernelPatches.bridge_stp_helper
|
||||||
|
kernelPatches.request_key_helper
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
linux_testing = let
|
linux_testing = let
|
||||||
testing = callPackage ../os-specific/linux/kernel/mainline.nix {
|
testing = callPackage ../os-specific/linux/kernel/mainline.nix {
|
||||||
# A special branch that tracks the kernel under the release process
|
# A special branch that tracks the kernel under the release process
|
||||||
@ -573,6 +581,7 @@ in {
|
|||||||
linux_5_15 = recurseIntoAttrs (packagesFor kernels.linux_5_15);
|
linux_5_15 = recurseIntoAttrs (packagesFor kernels.linux_5_15);
|
||||||
linux_6_1 = recurseIntoAttrs (packagesFor kernels.linux_6_1);
|
linux_6_1 = recurseIntoAttrs (packagesFor kernels.linux_6_1);
|
||||||
linux_6_5 = recurseIntoAttrs (packagesFor kernels.linux_6_5);
|
linux_6_5 = recurseIntoAttrs (packagesFor kernels.linux_6_5);
|
||||||
|
linux_6_6 = recurseIntoAttrs (packagesFor kernels.linux_6_6);
|
||||||
} // lib.optionalAttrs config.allowAliases {
|
} // lib.optionalAttrs config.allowAliases {
|
||||||
linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; # Added 2022-11-08
|
linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; # Added 2022-11-08
|
||||||
linux_4_14 = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; # Added 2023-10-11
|
linux_4_14 = throw "linux 4.14 was removed because it will reach its end of life within 23.11"; # Added 2023-10-11
|
||||||
@ -633,7 +642,7 @@ in {
|
|||||||
packageAliases = {
|
packageAliases = {
|
||||||
linux_default = packages.linux_6_1;
|
linux_default = packages.linux_6_1;
|
||||||
# Update this when adding the newest kernel major version!
|
# Update this when adding the newest kernel major version!
|
||||||
linux_latest = packages.linux_6_5;
|
linux_latest = packages.linux_6_6;
|
||||||
linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake";
|
linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake";
|
||||||
linux_rt_default = packages.linux_rt_5_4;
|
linux_rt_default = packages.linux_rt_5_4;
|
||||||
linux_rt_latest = packages.linux_rt_6_1;
|
linux_rt_latest = packages.linux_rt_6_1;
|
||||||
|
Loading…
Reference in New Issue
Block a user