[OpenWrt-Devel] [PATCH] hotplug: Allow renaming wireless phy devices.

2018-12-17 Thread greearb
From: Ben Greear uci set wireless.@wifi-device[0].phyname=wiphy0 Then reboot and/or re-plug that device, and this will name the phy wiphy0 instead of phy0, phy1, etc. This can help keep phy names consistent through driver reloads which may make the system easier to configure properly or to make

[OpenWrt-Devel] [PATCH] rtl8812au: Add out-of-tree driver.

2018-11-09 Thread greearb
efile @@ -0,0 +1,63 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=rtl8812au-ct +PKG_RELEASE=1 + +PKG_LICENSE:=GPLv2 +PKG_LICENSE_FILES:= + +PKG_SOURCE_URL:=https://github.com/greearb/rtl8812AU_8821AU_linux.git +PKG_SOURCE_PROTO:=git +PKG_SOURCE_DATE:=2018-11-09 +PKG_SOURCE_VE

[OpenWrt-Devel] [PATCH] hotplug: Allow configuring radio name.

2018-10-26 Thread greearb
From: Ben Greear This way the radio (phy) name can be the same through module reloads. To set the desired name: uci set wireless.@wifi-device[0].phyname=wiphy0 I guess this only works on ipq6086 boards as I could not find a more generic place to put this. Maybe someone can improve it. Signed

[OpenWrt-Devel] [PATCH] netgear r7800: Fix mac address of radios.

2018-10-25 Thread greearb
From: Ben Greear Reloading the driver causes the phyX to change, and that caused the MAC address to change. Instead, match on pci-bus which should be immutable. Signed-off-by: Ben Greear --- .../ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac| 8 +++- 1 file changed, 7 inse

[OpenWrt-Devel] [PATCH 3/3] ath10k-ct: Update to latest driver, fixes 2x2 NICs performance.

2017-01-19 Thread greearb
+++ b/package/kernel/ath10k-ct/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ath10k-ct -PKG_VERSION:=2017-01-18 +PKG_VERSION:=2017-01-19 PKG_RELEASE=1 PKG_LICENSE:=GPLv2 @@ -10,7 +10,7 @@ PKG_LICENSE_FILES:= PKG_SOURCE_URL:=https://github.com/greearb/ath10k-ct.git

[OpenWrt-Devel] [PATCH 2/3] hosap: Add ibss-key-mgt patch from upstream.

2017-01-19 Thread greearb
From: Ben Greear Signed-off-by: Ben Greear --- ...fix-tk-clearing-on-athentication-frame-rx.patch | 42 ++ 1 file changed, 42 insertions(+) create mode 100644 network/services/hostapd/patches/900-fix-tk-clearing-on-athentication-frame-rx.patch diff --git a/network/servic

[OpenWrt-Devel] [PATCH 1/3] Support VHT for ibss.

2017-01-19 Thread greearb
From: Ben Greear Signed-off-by: Ben Greear --- package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wirel

[OpenWrt-Devel] [PATCH 3/3] ath10k-fw: Support CT 10.1 988x firmware.

2017-01-18 Thread greearb
From: Ben Greear Good for QCA9880, 9882 chipsets. Signed-off-by: Ben Greear --- package/firmware/ath10k-firmware/Makefile | 36 +++ 1 file changed, 36 insertions(+) diff --git a/package/firmware/ath10k-firmware/Makefile b/package/firmware/ath10k-firmware/Makefile

[OpenWrt-Devel] [PATCH 2/3] Allow building ath10k-ct driver for chaos calmer.

2017-01-18 Thread greearb
clude $(TOPDIR)/rules.mk + +PKG_NAME:=ath10k-ct +PKG_VERSION:=2017-01-18 +PKG_RELEASE=1 + +PKG_LICENSE:=GPLv2 +PKG_LICENSE_FILES:= + +PKG_SOURCE_URL:=https://github.com/greearb/ath10k-ct.git +PKG_SOURCE_PROTO:=git +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE_VE

[OpenWrt-Devel] [PATCH 1/3] Back port txq-depth patch.

2017-01-18 Thread greearb
From: Ben Greear This lets ath10k-ct compile. Signed-off-by: Ben Greear --- This and next 2 patches are against chaos-calmer tree. This seems to allow ath10k-ct driver and firmware to work for me, and should help the next person trying such a thing. .../mac80211/patches/9997-mac80211-txq-de