Skip to content

Commit

Permalink
linux_hardened: hacky build fix
Browse files Browse the repository at this point in the history
Closes NixOS#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.
  • Loading branch information
Ma27 committed Oct 23, 2024
1 parent 9b08aa0 commit db1e1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/top-level/linux-kernels.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit db1e1ed

Please sign in to comment.