restart wds links when wifi is restarted
[openwrt.git] / package / broadcom-wl / files / lib / wifi / broadcom.sh
index a7ffabc..3a8bebd 100644 (file)
@@ -94,6 +94,8 @@ 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
        local vif_pre_up vif_post_up vif_do_up
 
        _c=0
@@ -189,7 +191,7 @@ enable_broadcom() {
                append vif_post_up "enabled 1" "$N"
                
                config_get ifname "$vif" ifname
-               append if_up "ifconfig $ifname up" ";$N"
+               #append if_up "ifconfig $ifname up" ";$N"
                local net_cfg bridge
                net_cfg="$(find_net_config "$vif")"
                [ -z "$net_cfg" ] || {
@@ -198,9 +200,18 @@ enable_broadcom() {
                }
                [ -z "$nasopts" ] || {
                        eval "${vif}_ssid=\"\$ssid\""
-                       mode="-A"
-                       [ "$vif" = "$sta_if" ] && mode="-S"
-                       [ -z "$nas" ] || nas_cmd="${nas_cmd:+$nas_cmd$N}$nas -P /var/run/nas.$ifname.pid -H 34954 ${bridge:+ -l $bridge} -i $ifname $mode -m $auth -w $wsec -s \"\$${vif}_ssid\" -g 3600 $nasopts &"
+                       nas_mode="-A"
+                       use_nas=1
+                       [ "$mode" = "sta" ] && {
+                               nas_mode="-S"
+                               [ -z "$bridge" ] || {
+                                       append vif_pre_up "supplicant 1" "$N"
+                                       append vif_pre_up "passphrase $key" "$N"
+                                       
+                                       use_nas=0
+                               }
+                       }
+                       [ -z "$nas" -o "$use_nas" = "0" ] || nas_cmd="${nas_cmd:+$nas_cmd$N}$nas -P /var/run/nas.$ifname.pid -H 34954 ${bridge:+ -l $bridge} -i $ifname $nas_mode -m $auth -w $wsec -s \"\$${vif}_ssid\" -g 3600 $nasopts &"
                }
                _c=$(($_c + 1))
        done
@@ -215,11 +226,14 @@ infra $infra
 ${wet:+wet 1}
 802.11d 0
 802.11h 0
+rxant ${rxant:-3}
+txant ${txant:-3}
 
 radio ${radio:-1}
 macfilter 0
 maclist none
-wds ${wds:-none}
+wds none
+${wds:+wds $wds}
 ${channel:+channel $channel}
 country ${country:-IL0}
 maxassoc ${maxassoc:-128}
@@ -245,7 +259,8 @@ detect_broadcom() {
 config wifi-device  wl0
        option type     broadcom
        option channel  5
-# disable radio to prevent an open ap after reflashing:
+
+       # REMOVE THIS LINE TO ENABLE WIFI:
        option disabled 1
 
 config wifi-iface
@@ -253,8 +268,6 @@ config wifi-iface
        option network  lan
        option mode     ap
        option ssid     OpenWrt
-       option hidden   0
        option encryption none
-
 EOF
 }
This page took 0.026245 seconds and 4 git commands to generate.