linux_hardened: hacky build fix

Closes #350681

The netfilter patch doesn't apply on the hardened branch. It will
(hopefully) be upstream anyways soon, so let's just ignore it here to
unbreak hardened for everyone else.
This commit is contained in:
Maximilian Bosch
2024-10-23 21:21:17 +02:00
parent 9b08aa08ad
commit db1e1ed861
+1 -1
View File
@@ -54,7 +54,7 @@ let
broken = kernel.meta.broken;
};
};
kernelPatches = kernel.kernelPatches ++ [
kernelPatches = lib.filter ({ name ? null, ... }: name != "netfilter-typo-fix") kernel.kernelPatches ++ [
kernelPatches.hardened.${kernel.meta.branch}
];
isHardened = true;