diff options
| author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-06-24 19:53:31 +0000 | 
|---|---|---|
| committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-06-24 19:53:31 +0000 | 
| commit | df75fe9f172b657962ff8a78a0cf32be541a81a6 (patch) | |
| tree | d4fb4693ee59ae7db6d01ec5a2278bcf1e30f21f | |
| parent | 2c2b0133d1bb869a1201c1b412ddebc38eba2827 (diff) | |
mac80211: configure HT IBSS through uci
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27279 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index 2ca63bb5c..2472f8ea8 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -457,7 +457,13 @@ enable_mac80211() {  						[ "$mcsub" -gt 0 ] && mcval="$mcval.$mcsub"  					} -					iw dev "$ifname" ibss join "$ssid" $freq \ +					config_get htmode "$device" htmode +					case "$htmode" in +						HT20|HT40+|HT40-) ;; +						*) htmode= ;; +					esac + +					iw dev "$ifname" ibss join "$ssid" $freq $htmode \  						${fixed:+fixed-freq} $bssid \  						${beacon_int:+beacon-interval $beacon_int} \  						${brstr:+basic-rates $brstr} \  | 
