diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-04 05:05:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-04 05:05:46 +0000 |
commit | 5b52ebfcb1878065f18c68edaa9a38a462ea2bdd (patch) | |
tree | bd8d439829d3d4d02f0fcdb27128dfb55e8e9251 | |
parent | 114b9a8fb6f2678ff3876cbba012ad5c5078ce8c (diff) | |
download | upstream-5b52ebfcb1878065f18c68edaa9a38a462ea2bdd.tar.gz upstream-5b52ebfcb1878065f18c68edaa9a38a462ea2bdd.tar.bz2 upstream-5b52ebfcb1878065f18c68edaa9a38a462ea2bdd.zip |
fix a race condition with broadcom wl devices in a bridge if a device is added before the bridge is brought up, the wifi settings are lost
SVN-Revision: 7872
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 2c15b5e231..c08fd69bc8 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -98,6 +98,7 @@ prepare_interface() { } || { $DEBUG brctl addbr "br-$config" $DEBUG brctl setfd "br-$config" 0 + $DEBUG ifconfig "br-$config" up $DEBUG brctl addif "br-$config" "$iface" # Creating the bridge here will have triggered a hotplug event, which will # result in another setup_interface() call, so we simply stop processing |