rename -brcm-2.4 preinit files to -brcm, as they're shared with brcm47xx
[openwrt/svn-archive/archive.git] / target / linux / brcm-2.4 / base-files / lib / preinit / 05_set_failsafe_switch_brcm
diff --git a/target/linux/brcm-2.4/base-files/lib/preinit/05_set_failsafe_switch_brcm b/target/linux/brcm-2.4/base-files/lib/preinit/05_set_failsafe_switch_brcm
new file mode 100644 (file)
index 0000000..28e62e5
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+failsafe_ip() {
+       [ -d /proc/switch/eth0 ] && [ "$ifname" = "eth0" ] && {
+               ifconfig eth0 0.0.0.0 down
+               echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth0/vlan/0/ports
+       }
+       
+       [ -n "$pi_ifname" ] && grep "$pi_ifname" /proc/net/dev >/dev/null && {
+               ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
+        }
+}
+
+boot_hook_add failsafe failsafe_ip
+