Author: jow Date: 2015-12-09 16:19:41 +0100 (Wed, 09 Dec 2015) New Revision: 47814
Modified: trunk/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh Log: 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 <[email protected]> Modified: trunk/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh =================================================================== --- trunk/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 2015-12-09 15:18:43 UTC (rev 47813) +++ trunk/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh 2015-12-09 15:19:41 UTC (rev 47814) @@ -524,7 +524,7 @@ [ "$auto_channel" -gt 0 ] && ibss_htmode="HT40+" ;; VHT80) - ibss_htmode="80Mhz" + ibss_htmode="80MHZ" ;; NONE|NOHT) ibss_htmode="NOHT" _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
