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

@@ -10,12 +10,5 @@ case "$iftype" in
esac
for dev in $ifname; do
brctl show | grep "$dev" >/dev/null && {
# interface is still part of a bridge, correct that
for brdev in $(brctl show | awk '$2 ~ /^[0-9].*\./ { print $1 }'); do
brctl delif "$brdev" "$dev" 2>/dev/null >/dev/null
done
}
setup_interface "$dev" "$1"
done