linuxKernels: ensure hardened kernels remain patched against CVE-2023-32233
This commit is contained in:
parent
3743a476a5
commit
99c8d675d2
1 changed files with 5 additions and 0 deletions
|
@ -54,6 +54,11 @@ let
|
|||
};
|
||||
kernelPatches = kernel.kernelPatches ++ [
|
||||
kernelPatches.hardened.${kernel.meta.branch}
|
||||
] ++ lib.optionals (lib.versionAtLeast version "5.15") [
|
||||
# Needed as long as hardened kernels are behind the first patch release
|
||||
# containing the fix for CVE-2023-32233. Can most likely be removed after the
|
||||
# next hardened kernel update.
|
||||
kernelPatches.CVE-2023-32233
|
||||
];
|
||||
isHardened = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue