projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
client mode fixes for broadcom wl
[openwrt.git]
/
package
/
broadcom-wl
/
files
/
lib
/
wifi
/
broadcom.sh
diff --git
a/package/broadcom-wl/files/lib/wifi/broadcom.sh
b/package/broadcom-wl/files/lib/wifi/broadcom.sh
index
b598952
..
397932e
100644
(file)
--- a/
package/broadcom-wl/files/lib/wifi/broadcom.sh
+++ b/
package/broadcom-wl/files/lib/wifi/broadcom.sh
@@
-1,19
+1,10
@@
append DRIVERS "broadcom"
append DRIVERS "broadcom"
-bridge_interface() {
- (
- . /etc/functions.sh
- include network
- scan_interfaces
- cfg="$(find_config "$1")"
- [ -z "$cfg" ] && return 0
- config_get iftype "$cfg" type
- [ "$iftype" = bridge ] && config_get "$iftype" bridge
- )
-}
-
scan_broadcom() {
local device="$1"
scan_broadcom() {
local device="$1"
+ local wds
+ local adhoc sta apmode
+ local adhoc_if sta_if ap_if
config_get vifs "$device" vifs
for vif in $vifs; do
config_get vifs "$device" vifs
for vif in $vifs; do
@@
-28,12
+19,17
@@
scan_broadcom() {
sta_if="$vif"
;;
ap)
sta_if="$vif"
;;
ap)
- ap=1
+ ap
mode
=1
ap_if="${ap_if:+$ap_if }$vif"
;;
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
*) echo "$device($vif): Invalid mode";;
esac
done
+ config_set "$device" wds "$wds"
local _c=
for vif in ${adhoc_if:-$sta_if $ap_if}; do
local _c=
for vif in ${adhoc_if:-$sta_if $ap_if}; do
@@
-52,7
+48,7
@@
scan_broadcom() {
mssid=1
apsta=0
radio=1
mssid=1
apsta=0
radio=1
- case "$adhoc:$sta:$ap" in
+ case "$adhoc:$sta:$ap
mode
" in
1*)
ap=0
mssid=0
1*)
ap=0
mssid=0
@@
-77,7
+73,6
@@
disable_broadcom() {
wlc down
(
include /lib/network
wlc down
(
include /lib/network
- scan_interfaces
# make sure the interfaces are down and removed from all bridges
for dev in wl0 wl0.1 wl0.2 wl0.3; do
# make sure the interfaces are down and removed from all bridges
for dev in wl0 wl0.1 wl0.2 wl0.3; do
@@
-86,6
+81,7
@@
disable_broadcom() {
}
done
)
}
done
)
+ true
}
enable_broadcom() {
}
enable_broadcom() {
@@
-93,6
+89,7
@@
enable_broadcom() {
config_get channel "$device" channel
config_get country "$device" country
config_get maxassoc "$device" maxassoc
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)"
_c=0
nas="$(which nas)"
@@
-155,8
+152,12
@@
enable_broadcom() {
config_get ifname "$vif" ifname
append if_up "ifconfig $ifname up" ";$N"
config_get ifname "$vif" ifname
append if_up "ifconfig $ifname up" ";$N"
+ net_cfg="$(find_net_config "$vif")"
+ [ -z "$net_cfg" ] || {
+ bridge="$(bridge_interface "$net_cfg")"
+ append if_up "start_net '$ifname' '$net_cfg'" ";$N"
+ }
[ -z "$nasopts" ] || {
[ -z "$nasopts" ] || {
- bridge="$(bridge_interface "$ifname")"
eval "${vif}_ssid=\"\$ssid\""
mode="-A"
[ "$vif" = "$sta_if" ] && mode="-S"
eval "${vif}_ssid=\"\$ssid\""
mode="-A"
[ "$vif" = "$sta_if" ] && mode="-S"
@@
-168,8
+169,8
@@
enable_broadcom() {
wlc stdin <<EOF
$ifdown
wlc stdin <<EOF
$ifdown
-mssid $mssid
ap $ap
ap $ap
+mssid $mssid
apsta $apsta
infra $infra
${wet:+wet 1}
apsta $apsta
infra $infra
${wet:+wet 1}
@@
-177,7
+178,7
@@
${wet:+wet 1}
radio ${radio:-1}
macfilter 0
maclist none
radio ${radio:-1}
macfilter 0
maclist none
-wds
none
+wds
${wds:-none}
channel ${channel:-0}
country ${country:-IL0}
maxassoc ${maxassoc:-128}
channel ${channel:-0}
country ${country:-IL0}
maxassoc ${maxassoc:-128}
@@
-186,8
+187,8
@@
$vif_pre_up
up
$vif_post_up
EOF
up
$vif_post_up
EOF
- eval "$nas_cmd"
eval "$if_up"
eval "$if_up"
+ eval "$nas_cmd"
}
}
This page took
0.024169 seconds
and
4
git commands to generate.