mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 18:17:32 +02:00
broadcom-wl: only use mssid if necessary (fixes spurious error messages on older hw)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12769 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
23ab7d24d7
commit
baf609d512
@ -5,10 +5,12 @@ scan_broadcom() {
|
||||
local wds
|
||||
local adhoc sta apmode mon
|
||||
local adhoc_if sta_if ap_if mon_if
|
||||
local _c=0
|
||||
|
||||
config_get vifs "$device" vifs
|
||||
for vif in $vifs; do
|
||||
config_get mode "$vif" mode
|
||||
_c=$(($_c + 1))
|
||||
case "$mode" in
|
||||
adhoc)
|
||||
adhoc=1
|
||||
@ -53,7 +55,11 @@ scan_broadcom() {
|
||||
|
||||
ap=1
|
||||
infra=1
|
||||
mssid=1
|
||||
if [ "$_c" -gt 1 ]; then
|
||||
mssid=1
|
||||
else
|
||||
mssid=
|
||||
fi
|
||||
apsta=0
|
||||
radio=1
|
||||
monitor=0
|
||||
|
Loading…
Reference in New Issue
Block a user