From e84d52912732b2bfd82755f308a3e85532392b40 Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 4 Jul 2007 05:05:46 +0000 Subject: [PATCH] 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 --- package/base-files/files/lib/network/config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 2c15b5e23..c08fd69bc 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 -- 2.35.1