1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5116 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2006-10-15 15:50:02 +00:00
parent 95e7b381e9
commit 3153b44635
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() {