merge r13236, r13239 and r13240
[openwrt/svn-archive/archive.git] / package / broadcom-wl / files / lib / wifi / broadcom.sh
index ece3a6961355e379a1ab1e92035d7079b7529ac6..273e5696273f1e1eae002ef3854fa8410c6f2dd6 100644 (file)
@@ -117,12 +117,12 @@ enable_broadcom() {
        config_get vifs "$device" vifs
        config_get distance "$device" distance
        config_get slottime "$device" slottime
-       config_get rxant "$device" rxant
-       config_get txant "$device" txant
+       config_get rxantenna "$device" rxantenna
+       config_get txantenna "$device" txantenna
        config_get_bool frameburst "$device" frameburst
        config_get macfilter "$device" macfilter
        config_get maclist "$device" maclist
-       local vif_pre_up vif_post_up vif_do_up
+       local vif_pre_up vif_post_up vif_do_up txpower
 
        _c=0
        nas="$(which nas)"
@@ -151,6 +151,8 @@ enable_broadcom() {
        esac
 
        for vif in $vifs; do
+               config_get txpower "$vif" txpower
+
                config_get mode "$vif" mode
                append vif_pre_up "vif $_c" "$N"
                append vif_post_up "vif $_c" "$N"
@@ -269,8 +271,8 @@ infra $infra
 ${wet:+wet 1}
 802.11d 0
 802.11h 0
-rxant ${rxant:-3}
-txant ${txant:-3}
+rxant ${rxantenna:-3}
+txant ${txantenna:-3}
 monitor ${monitor:-0}
 passive ${passive:-0}
 
@@ -293,6 +295,8 @@ EOF
        wlc stdin <<EOF
 $vif_do_up
 EOF
+       [ -z "$txpower" ] || iwconfig $device txpower ${txpower}dBm 
+
        eval "$nas_cmd"
 }