mac80211: configure HT IBSS through uci

SVN-Revision: 27279
lede-17.01
Felix Fietkau 2011-06-24 19:53:31 +00:00
parent 9a790eb3df
commit e087e678af
1 changed files with 7 additions and 1 deletions

View File

@ -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} \