2020-04-04 23:47:13 +02:00
|
|
|
{ lib, fetchpatch, fetchurl }:
|
2009-12-14 16:28:55 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
{
|
2021-01-04 19:47:44 +01:00
|
|
|
ath_regd_optional = rec {
|
|
|
|
name = "ath_regd_optional";
|
|
|
|
patch = fetchpatch {
|
|
|
|
name = name + ".patch";
|
|
|
|
url = "https://github.com/openwrt/openwrt/raw/ed2015c38617ed6624471e77f27fbb0c58c8c660/package/kernel/mac80211/patches/ath/402-ath_regd_optional.patch";
|
|
|
|
sha256 = "1ssDXSweHhF+pMZyd6kSrzeW60eb6MO6tlf0il17RC0=";
|
|
|
|
postFetch = ''
|
|
|
|
sed -i 's/CPTCFG_/CONFIG_/g' $out
|
|
|
|
sed -i '/--- a\/local-symbols/,$d' $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-14 00:49:14 +01:00
|
|
|
bridge_stp_helper =
|
|
|
|
{ name = "bridge-stp-helper";
|
|
|
|
patch = ./bridge-stp-helper.patch;
|
|
|
|
};
|
2017-03-21 00:24:54 +01:00
|
|
|
|
2019-11-27 15:39:38 +01:00
|
|
|
request_key_helper =
|
|
|
|
{ name = "request-key-helper";
|
|
|
|
patch = ./request-key-helper.patch;
|
|
|
|
};
|
|
|
|
|
2019-12-23 01:50:41 +01:00
|
|
|
request_key_helper_updated =
|
|
|
|
{ name = "request-key-helper-updated";
|
|
|
|
patch = ./request-key-helper-updated.patch;
|
|
|
|
};
|
|
|
|
|
2016-08-30 06:26:12 +02:00
|
|
|
modinst_arg_list_too_long =
|
|
|
|
{ name = "modinst-arglist-too-long";
|
|
|
|
patch = ./modinst-arg-list-too-long.patch;
|
|
|
|
};
|
|
|
|
|
2016-08-25 19:01:40 +02:00
|
|
|
cpu-cgroup-v2 = import ./cpu-cgroup-v2-patches;
|
2016-09-28 18:45:55 +02:00
|
|
|
|
2020-04-04 23:47:13 +02:00
|
|
|
hardened = let
|
2021-10-09 14:48:27 +02:00
|
|
|
mkPatch = kernelVersion: { version, sha256, patch }: let src = patch; in {
|
2020-04-23 19:43:44 +02:00
|
|
|
name = lib.removeSuffix ".patch" src.name;
|
2021-01-07 20:39:27 +01:00
|
|
|
patch = fetchurl (lib.filterAttrs (k: v: k != "extra") src);
|
|
|
|
extra = src.extra;
|
2021-10-09 14:48:27 +02:00
|
|
|
inherit version sha256;
|
2020-04-04 23:47:13 +02:00
|
|
|
};
|
2021-11-03 13:43:23 +01:00
|
|
|
patches = lib.importJSON ./hardened/patches.json;
|
2020-04-04 23:47:13 +02:00
|
|
|
in lib.mapAttrs mkPatch patches;
|
|
|
|
|
2020-12-20 14:36:07 +01:00
|
|
|
# Adapted for Linux 5.4 from:
|
|
|
|
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=04896832c94aae4842100cafb8d3a73e1bed3a45
|
|
|
|
rtl8761b_support =
|
|
|
|
{ name = "rtl8761b-support";
|
|
|
|
patch = ./rtl8761b-support.patch;
|
|
|
|
};
|
|
|
|
|
2020-12-08 16:23:51 +01:00
|
|
|
export-rt-sched-migrate = {
|
|
|
|
name = "export-rt-sched-migrate";
|
|
|
|
patch = ./export-rt-sched-migrate.patch;
|
|
|
|
};
|
2009-12-14 16:28:55 +01:00
|
|
|
}
|