mac80211: fix order of iw parameters, fix broken antenna config call

SVN-Revision: 25152
This commit is contained in:
Jo-Philipp Wich 2011-01-27 16:00:02 +00:00
parent 50be0201f1
commit a580764a9f
1 changed files with 2 additions and 2 deletions

View File

@ -256,7 +256,7 @@ enable_mac80211() {
fixed=1
}
iw phy "$phy" set antenna "$txantenna $rxantenna"
iw phy "$phy" set antenna $txantenna $rxantenna
[ -n "$distance" ] && iw phy "$phy" set distance "$distance"
[ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}"
@ -425,9 +425,9 @@ enable_mac80211() {
iw dev "$ifname" ibss join "$ssid" $freq \
${fixed:+fixed-freq} $bssid \
${mcval:+mcast-rate $mcval} \
${bintval:+beacon-interval $bintval} \
${basicrates:+basic-rates $basicrates} \
${mcval:+mcast-rate $mcval} \
${keyspec:+keys $keyspec}
;;
sta)