remove all broadcom interfaces from bridges and bring them down completely when wifi down is called

SVN-Revision: 5116
This commit is contained in:
Felix Fietkau
2006-10-15 15:50:02 +00:00
parent 5fee2188f5
commit 313556e91e
3 changed files with 28 additions and 8 deletions

View File

@@ -75,7 +75,17 @@ scan_broadcom() {
disable_broadcom() {
wlc down
ifconfig wl0 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
ifconfig "$dev" down 2>/dev/null >/dev/null && {
unbridge "$dev"
}
done
)
}
enable_broadcom() {