aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-07-18 21:15:42 +0000
committerJohn Crispin <john@openwrt.org>2015-07-18 21:15:42 +0000
commitc89f360059f87df379c4a3092aa19f8732e3e661 (patch)
tree43dde10959bc99b84b2514941ec9a6d2580f2638 /target/linux
parent2d955b51fe0f4c4a8b8f4e2b26c1e0004fbe2278 (diff)
downloadupstream-c89f360059f87df379c4a3092aa19f8732e3e661.tar.gz
upstream-c89f360059f87df379c4a3092aa19f8732e3e661.tar.bz2
upstream-c89f360059f87df379c4a3092aa19f8732e3e661.zip
ar71xx: Enable ath10k calibration data loading for EnGenius ESR1750 and EPG500.
As r46245 disabled the board.bin template workaround, 5GHz wifi stopped working on these devices. This adds them to the calibration data loading introduced in r46244 and thus makes 5GHz work again for these devices. Signed-off-by: Christian Beier <cb@shoutrlabs.com> SVN-Revision: 46415
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata5
1 files changed, 5 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata b/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata
index fbbfbd7eea..7111630536 100644
--- a/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata
+++ b/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata
@@ -62,6 +62,11 @@ case "$FIRMWARE" in
ath10kcal_extract "radiocfg" 20480 2116
ath10kcal_patch_mac $(mtd_get_mac_ascii devdata wlan5mac)
;;
+ esr1750 | \
+ epg5000)
+ ath10kcal_extract "caldata" 20480 2116
+ ath10kcal_patch_mac $(macaddr_add $(cat /sys/class/net/eth0/address) +1)
+ ;;
esac
;;
"ath10k/cal-pci-0000:01:00.0.bin")
> 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216