From: Jo-Philipp Wich Date: Wed, 9 Dec 2015 15:19:41 +0000 (+0000) Subject: mac80211: fix passing of VHT80 in IBSS mode X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=aca6adfa1817bf40e39873af740e6d8c82fc0a39;p=openwrt%2Fsvn-archive%2Farchive.git 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 SVN-Revision: 47814 --- 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"