aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-09 15:19:41 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-09 15:19:41 +0000
commitc462675cbbaaceedce6521510c7a2459a7345255 (patch)
tree0621911d21e2f0e4f1b41130da4b49aac9bcd52b /package/kernel/mac80211
parent412f238e625f9abaecfdf0bb4d8c83982b8e93a2 (diff)
downloadmaster-187ad058-c462675cbbaaceedce6521510c7a2459a7345255.tar.gz
master-187ad058-c462675cbbaaceedce6521510c7a2459a7345255.tar.bz2
master-187ad058-c462675cbbaaceedce6521510c7a2459a7345255.zip
mac80211: fix passing of VHT80 in IBSS mode
The "iw" utility expects the VHT80 to be specified as uppercase "80MHZ", change the script to reflect that. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47814 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/mac80211')
-rw-r--r--package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh
index 71b96aa425..29dd4de400 100644
--- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh
+++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh
@@ -524,7 +524,7 @@ mac80211_setup_adhoc_htmode() {
[ "$auto_channel" -gt 0 ] && ibss_htmode="HT40+"
;;
VHT80)
- ibss_htmode="80Mhz"
+ ibss_htmode="80MHZ"
;;
NONE|NOHT)
ibss_htmode="NOHT"