rdc: disable pci serial, remove bluetooth (because usb is disabled)
[openwrt.git] / package / broadcom-wl / files / lib / wifi / broadcom.sh
index f5c1ccb..4f96b25 100644 (file)
@@ -1,5 +1,38 @@
+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
@@ -17,9 +50,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
@@ -59,12 +97,27 @@ scan_broadcom() {
        esac
 }
 
+disable_broadcom() {
+       wlc down
+       (
+               include /lib/network
 
-setup_broadcom() {
+               # make sure the interfaces are down and removed from all bridges
+               for dev in wl0 wl0.1 wl0.2 wl0.3; do
+                       ifconfig "$dev" down 2>/dev/null >/dev/null && {
+                               unbridge "$dev"
+                       }
+               done
+       )
+       true
+}
+
+enable_broadcom() {
        local _c
        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)"
@@ -121,17 +174,22 @@ setup_broadcom() {
                append vif_post_up "eap_restrict $eap_r" "$N"
                
                config_get ssid "$vif" ssid
+               append vif_post_up "vlan_mode 0"
                append vif_post_up "ssid $ssid" "$N"
                append vif_post_up "enabled 1" "$N"
                
                config_get ifname "$vif" ifname
                append if_up "ifconfig $ifname up" ";$N"
+               net_cfg="$(find_vif_config "$vif")"
+               [ -z "$net_cfg" ] || {
+                       bridge="$(bridge_interface "$net_cfg")"
+                       append if_up "start_net '$ifname' '$net_cfg'" ";$N"
+               }
                [ -z "$nasopts" ] || {
-                       config_get bridge "$vif" bridge # XXX: integrate with /etc/config/network later
                        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 -i $ifname${bridge:+ -l $bridge} $mode -m $auth -w $crypto -s \"\$${vif}_ssid\" -g 3600 $nasopts &"
+                       [ -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 $crypto -s \"\$${vif}_ssid\" -g 3600 $nasopts &"
                }
                _c=$(($_c + 1))
        done
@@ -148,7 +206,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}
@@ -157,8 +215,26 @@ $vif_pre_up
 up
 $vif_post_up
 EOF
-       eval "$nas_cmd"
        eval "$if_up"
+       eval "$nas_cmd"
 }
 
 
+detect_broadcom() {
+       [ -f /proc/net/wl0 ] || return
+       config_get type wl0 type
+       [ "$type" = broadcom ] && return
+       cat <<EOF
+config wifi-device  wl0
+       option type     broadcom
+       option channel  5
+
+config wifi-iface
+       option device   wl0
+       option mode     ap
+       option ssid     OpenWrt
+       option hidden   0
+       option encryption none
+
+EOF
+}
This page took 0.024124 seconds and 4 git commands to generate.