summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien@users.noreply.github.com>2021-01-30 14:07:25 +0000
committerGitHub <noreply@github.com>2021-01-30 14:07:25 +0000
commit04af7c02cd0189348ac8a8c3975dbe82010a9157 (patch)
treedd4c0df85e9bdbd405f33ead43cd8bb5c2c3b5d4 /pkgs/os-specific
parent5efbf24b6766101bea76c454dcbab113875872c6 (diff)
parentaf8abf141d84d9b72199d0648248bd3c5f4f123e (diff)
Merge pull request #108725 from veehaitch/ath_regd_optional
kernelPatches: ath driver: allow setting regulatory domain
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/patches.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index c185f60349ae..f41cedca0f69 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -1,6 +1,19 @@
{ lib, fetchpatch, fetchurl }:
{
+ 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
+ '';
+ };
+ };
+
bridge_stp_helper =
{ name = "bridge-stp-helper";
patch = ./bridge-stp-helper.patch;