ignore the bridge option if brctl is not available
authorFelix Fietkau <nbd@openwrt.org>
Sat, 20 Jan 2007 15:28:47 +0000 (15:28 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 20 Jan 2007 15:28:47 +0000 (15:28 +0000)
SVN-Revision: 6145

package/base-files/files/lib/network/config.sh

index ffce9f6aa3e8297a523dcc2bc95af201795d2a4f..e68223e2777c0c6fb7218e11dccc6ec7a273abb6 100755 (executable)
@@ -88,21 +88,23 @@ setup_interface() {
        # Setup bridging
        case "$iftype" in
                bridge)
-                       ifconfig "$iface" up 2>/dev/null >/dev/null
-                       ifconfig "br-$config" 2>/dev/null >/dev/null && {
-                               $DEBUG brctl addif "br-$config" "$iface"
-                               return 0
-                       } || {
-                               $DEBUG brctl addbr "br-$config"
-                               $DEBUG brctl setfd "br-$config" 0
-                               $DEBUG brctl addif "br-$config" "$iface"
-                               iface="br-$config"
+                       [ -x /usr/sbin/brctl ] && {
+                               ifconfig "$iface" up 2>/dev/null >/dev/null
+                               ifconfig "br-$config" 2>/dev/null >/dev/null && {
+                                       $DEBUG brctl addif "br-$config" "$iface"
+                                       return 0
+                               } || {
+                                       $DEBUG brctl addbr "br-$config"
+                                       $DEBUG brctl setfd "br-$config" 0
+                                       $DEBUG brctl addif "br-$config" "$iface"
+                                       iface="br-$config"
                                
-                               # need to bring up the bridge and wait a second for 
-                               # it to switch to the 'forwarding' state, otherwise
-                               # it will lose its routes...
-                               ifconfig "$iface" up
-                               sleep 1
+                                       # need to bring up the bridge and wait a second for 
+                                       # it to switch to the 'forwarding' state, otherwise
+                                       # it will lose its routes...
+                                       ifconfig "$iface" up
+                                       sleep 1
+                               }
                        }
                ;;
        esac