From 10f585eda849f55ccbd7bdb0ccba6fcd0732055d Mon Sep 17 00:00:00 2001
From: David Bauer <mail@david-bauer.net>
Date: Mon, 15 Feb 2021 01:26:22 +0100
Subject: [PATCH] modules: update OpenWrt

fec1aa6dfb mt76: update to the latest version
224fa47bf9 ramips: mark toggle input on EX6150 as a switch
3a05aa17db mac80211: Remove 357-mac80211-optimize-skb-resizing.patch
171d8bce0c ramips: remove factory image for TP-Link Archer C2 v1
2eb8444363 ath79: fix USB power GPIO for TP-Link TL-WR810N v1
d5a8e85878 wolfssl: Backport fix for CVE-2021-3336
cf5e5204d9 bcm63xx: sprom: override the PCI device ID
4465b44fc1 kernel: bump 4.14 to 4.14.219
4b9ade65ec bcm63xx: R5010UNv2: fix flash partitions for 16MB flash
ab9cb390be hostapd: fix P2P group information processing vulnerability
1e90091c5d opkg: update to latest git HEAD of branch openwrt-19.07
312c05611b kernel: bump 4.14 to 4.14.218
3100649458 wolfssl: enable HAVE_SECRET_CALLBACK
e9d2aa9dc6 wolfssl: Fix hostapd build with wolfssl 4.6.0
2044c01de8 wolfssl: Update to v4.6.0-stable
5ac0b2b431 mvebu: omnia: make initramfs image usable out of the box

(cherry picked from commit 429223b99ff41da2905dcafd719c140fe867c51e)
---
 modules                                       |  2 +-
 ...3-mt76-mt76x0-disable-GTK-offloading.patch | 49 -------------------
 2 files changed, 1 insertion(+), 50 deletions(-)
 delete mode 100644 patches/openwrt/0013-mt76-mt76x0-disable-GTK-offloading.patch

diff --git a/modules b/modules
index 6e621aae7..c3d73bba0 100644
--- a/modules
+++ b/modules
@@ -2,7 +2,7 @@ GLUON_FEEDS='packages routing gluon'
 
 OPENWRT_REPO=https://github.com/openwrt/openwrt.git
 OPENWRT_BRANCH=openwrt-19.07
-OPENWRT_COMMIT=a7a207e18bf7fa04f265bb95cbe6fa91561fbfe8
+OPENWRT_COMMIT=fec1aa6dfbcea5fdcaa35ec441de6fdd750b4d1a
 
 PACKAGES_PACKAGES_REPO=https://github.com/openwrt/packages.git
 PACKAGES_PACKAGES_BRANCH=openwrt-19.07
diff --git a/patches/openwrt/0013-mt76-mt76x0-disable-GTK-offloading.patch b/patches/openwrt/0013-mt76-mt76x0-disable-GTK-offloading.patch
deleted file mode 100644
index c1f404c81..000000000
--- a/patches/openwrt/0013-mt76-mt76x0-disable-GTK-offloading.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From: David Bauer <mail@david-bauer.net>
-Date: Sat, 13 Jun 2020 19:19:17 +0200
-Subject: mt76: mt76x0: disable GTK offloading
-
-When the GTK is offloaded, MT7610 won't transmit any multicast frames.
-This is most likely due to a bug in the offloading datapath. MT7612 is
-not affected.
-
-Disable GTK offloading for now. It can be re-enabled once the bug in the
-offloading path is fixed.
-
-Signed-off-by: David Bauer <mail@david-bauer.net>
-
-diff --git a/package/kernel/mt76/patches/001-mt76-mt76x0-disable-gtk-offloading.patch b/package/kernel/mt76/patches/001-mt76-mt76x0-disable-gtk-offloading.patch
-new file mode 100644
-index 0000000000000000000000000000000000000000..e7e19ac957dbfaa9510016d3387abe9eed353538
---- /dev/null
-+++ b/package/kernel/mt76/patches/001-mt76-mt76x0-disable-gtk-offloading.patch
-@@ -0,0 +1,30 @@
-+From ae01717951013fbc8bb0315d902d5b9f5873631a Mon Sep 17 00:00:00 2001
-+From: David Bauer <mail@david-bauer.net>
-+Date: Fri, 12 Jun 2020 01:09:57 +0200
-+Subject: [PATCH] mt76: mt76x0: disable GTK offloading
-+
-+When the GTK is offloaded, MT7610 won't transmit any multicast frames.
-+This is most likely due to a bug in the offloading datapath. MT7612 is
-+not affected.
-+
-+Disable GTK offloading for now. It can be re-enabled once the bug in the
-+offloading path is fixed.
-+
-+Signed-off-by: David Bauer <mail@david-bauer.net>
-+---
-+ drivers/net/wireless/mediatek/mt76/mt76x02_util.c | 4 ++++
-+ 1 file changed, 4 insertions(+)
-+
-+--- a/mt76x02_util.c
-++++ b/mt76x02_util.c
-+@@ -432,6 +432,10 @@ int mt76x02_set_key(struct ieee80211_hw
-+ 	    !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE))
-+ 		return -EOPNOTSUPP;
-+ 
-++	/* MT76x0 GTK offloading is currently broken */
-++	if (is_mt76x0(dev) && !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE))
-++		return -EOPNOTSUPP;
-++
-+ 	/*
-+ 	 * In USB AP mode, broadcast/multicast frames are setup in beacon
-+ 	 * data registers and sent via HW beacons engine, they require to
-- 
GitLab