2020-04-04 21:47:13 +00:00
|
|
|
{ lib, fetchpatch, fetchurl }:
|
2009-12-14 15:28:55 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
{
|
2021-01-04 18:47:44 +00: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-13 23:49:14 +00:00
|
|
|
bridge_stp_helper =
|
|
|
|
{ name = "bridge-stp-helper";
|
|
|
|
patch = ./bridge-stp-helper.patch;
|
|
|
|
};
|
2017-03-20 23:24:54 +00:00
|
|
|
|
2019-11-27 14:39:38 +00:00
|
|
|
request_key_helper =
|
|
|
|
{ name = "request-key-helper";
|
|
|
|
patch = ./request-key-helper.patch;
|
|
|
|
};
|
|
|
|
|
2019-12-23 00:50:41 +00:00
|
|
|
request_key_helper_updated =
|
|
|
|
{ name = "request-key-helper-updated";
|
|
|
|
patch = ./request-key-helper-updated.patch;
|
|
|
|
};
|
|
|
|
|
2016-08-30 04:26:12 +00:00
|
|
|
modinst_arg_list_too_long =
|
|
|
|
{ name = "modinst-arglist-too-long";
|
|
|
|
patch = ./modinst-arg-list-too-long.patch;
|
|
|
|
};
|
|
|
|
|
2016-08-25 17:01:40 +00:00
|
|
|
cpu-cgroup-v2 = import ./cpu-cgroup-v2-patches;
|
2016-09-28 16:45:55 +00:00
|
|
|
|
2020-04-04 21:47:13 +00:00
|
|
|
hardened = let
|
2021-10-09 12:48:27 +00:00
|
|
|
mkPatch = kernelVersion: { version, sha256, patch }: let src = patch; in {
|
2020-04-23 17:43:44 +00:00
|
|
|
name = lib.removeSuffix ".patch" src.name;
|
2021-01-07 19:39:27 +00:00
|
|
|
patch = fetchurl (lib.filterAttrs (k: v: k != "extra") src);
|
|
|
|
extra = src.extra;
|
2021-10-09 12:48:27 +00:00
|
|
|
inherit version sha256;
|
2020-04-04 21:47:13 +00:00
|
|
|
};
|
2021-11-03 12:43:23 +00:00
|
|
|
patches = lib.importJSON ./hardened/patches.json;
|
2020-04-04 21:47:13 +00:00
|
|
|
in lib.mapAttrs mkPatch patches;
|
|
|
|
|
2020-12-20 13:36:07 +00: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 15:23:51 +00:00
|
|
|
export-rt-sched-migrate = {
|
|
|
|
name = "export-rt-sched-migrate";
|
|
|
|
patch = ./export-rt-sched-migrate.patch;
|
|
|
|
};
|
linux_{5_15,6_1}: revert patch to fix Equinix Metal bonded networking with `ice` driver
Some Equinix Metal instances, such as a3.large.x86, m3.large.x86
(specific hardware revisions), and n3.large.x86, use the `ice` kernel
driver for their network cards, in conjunction with bonded devices.
However, this commit caused a regression where these bonded devices
would deadlock. This was initially reported by Jaroslav Pulchart on
the netdev mailing list[1], and there were follow-up patches from Dave
Ertman[2][3] that attempted to fix this but were not up to snuff for
various reasons[4].
Specifically, v2 of the patch ([3]) appears to fix the issue on some
devices (tested with 8086:159B network cards), while it is still broken
on others (such as an 8086:1593 network card).
We revert the patch exposing the issue until upstream has a working
solution in order to make Equinix Metal instances work reliably again.
[1]: https://lore.kernel.org/netdev/CAK8fFZ6A_Gphw_3-QMGKEFQk=sfCw1Qmq0TVZK3rtAi7vb621A@mail.gmail.com/
[2]: https://patchwork.ozlabs.org/project/intel-wired-lan/patch/20230111183145.1497367-1-david.m.ertman@intel.com/
[3]: https://patchwork.ozlabs.org/project/intel-wired-lan/patch/20230215191757.1826508-1-david.m.ertman@intel.com/
[4]: https://lore.kernel.org/netdev/cb31a911-ba80-e2dc-231f-851757cfd0b8@intel.com/T/#m6e53f8c43093693c10268140126abe99e082dc1c
2023-02-16 17:58:18 +00:00
|
|
|
|
|
|
|
fix-em-ice-bonding = {
|
|
|
|
name = "fix-em-ice-bonding";
|
|
|
|
patch = ./fix-em-ice-bonding.patch;
|
|
|
|
};
|
2009-12-14 15:28:55 +00:00
|
|
|
}
|