move two functions from broadcom.sh to /sbin/wifi
[openwrt.git] / package / broadcom-wl / files / lib / wifi / broadcom.sh
index 5bb69da..27d9ca6 100644 (file)
@@ -1,37 +1,8 @@
 append DRIVERS "broadcom"
 
-find_vif_config() {(
-       local vif="$1"
-       local cfg
-       local ifname
-
-       config_get cfg "$vif" network
-
-       [ -z "$cfg" ] && {
-               include /lib/network
-               scan_interfaces
-
-               config_get ifname "$vif" ifnamea
-
-               cfg="$(find_config "$ifname")"
-       }
-       [ -z "$cfg" ] && return 0
-       echo "$cfg"
-)}
-
-bridge_interface() {(
-       local cfg="$1"
-       [ -z "$cfg" ] && return 0
-
-       include /lib/network
-       scan_interfaces
-
-       config_get iftype "$cfg" type
-       [ "$iftype" = bridge ] && config_get "$iftype" ifname
-)}
-
 scan_broadcom() {
        local device="$1"
+       local wds=
 
        config_get vifs "$device" vifs
        for vif in $vifs; do
@@ -49,9 +20,14 @@ scan_broadcom() {
                                ap=1
                                ap_if="${ap_if:+$ap_if }$vif"
                        ;;
+                       wds)
+                               config_get addr "$vif" bssid
+                               [ -z "$addr" ] || append wds "$addr"
+                       ;;
                        *) echo "$device($vif): Invalid mode";;
                esac
        done
+       config_set "$device" wds "$wds"
 
        local _c=
        for vif in ${adhoc_if:-$sta_if $ap_if}; do
@@ -103,6 +79,7 @@ disable_broadcom() {
                        }
                done
        )
+       true
 }
 
 enable_broadcom() {
@@ -110,6 +87,7 @@ enable_broadcom() {
        config_get channel "$device" channel
        config_get country "$device" country
        config_get maxassoc "$device" maxassoc
+       config_get wds "$device" wds
 
        _c=0
        nas="$(which nas)"
@@ -172,7 +150,7 @@ enable_broadcom() {
                
                config_get ifname "$vif" ifname
                append if_up "ifconfig $ifname up" ";$N"
-               net_cfg="$(find_vif_config "$vif")"
+               net_cfg="$(find_net_config "$vif")"
                [ -z "$net_cfg" ] || {
                        bridge="$(bridge_interface "$net_cfg")"
                        append if_up "start_net '$ifname' '$net_cfg'" ";$N"
@@ -198,7 +176,7 @@ ${wet:+wet 1}
 radio ${radio:-1}
 macfilter 0
 maclist none
-wds none
+wds ${wds:-none}
 channel ${channel:-0}
 country ${country:-IL0}
 maxassoc ${maxassoc:-128}