aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-07-04 05:05:46 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-07-04 05:05:46 +0000
commitdba4a4c41e348e1aeae4de42e0c881f72ead4560 (patch)
tree8e3e94272eede341f37bb6fefa62fe591cdc3e92
parent5268bc8e01f80dd712523fe1df04a9bf17035d49 (diff)
downloadmaster-187ad058-dba4a4c41e348e1aeae4de42e0c881f72ead4560.tar.gz
master-187ad058-dba4a4c41e348e1aeae4de42e0c881f72ead4560.tar.bz2
master-187ad058-dba4a4c41e348e1aeae4de42e0c881f72ead4560.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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7872 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh1
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