aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm-2.4/base-files/lib/preinit/05_set_failsafe_switch_brcm
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-06-26 20:41:59 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-06-26 20:41:59 +0000
commitd3ec4c6f75195bf79f15804024036a5eb6c0b94d (patch)
tree1c3c36fd5f358bb19c2b181de417425f68444d82 /target/linux/brcm-2.4/base-files/lib/preinit/05_set_failsafe_switch_brcm
parent19a9284b9a6fd60ac78a129052cc677a39abf3cb (diff)
downloadupstream-d3ec4c6f75195bf79f15804024036a5eb6c0b94d.tar.gz
upstream-d3ec4c6f75195bf79f15804024036a5eb6c0b94d.tar.bz2
upstream-d3ec4c6f75195bf79f15804024036a5eb6c0b94d.zip
remove the brcm-2.4 target, it will no longer be supported in future releases. please use brcm47xx with broadcom-wl instead
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21946 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm-2.4/base-files/lib/preinit/05_set_failsafe_switch_brcm')
-rw-r--r--target/linux/brcm-2.4/base-files/lib/preinit/05_set_failsafe_switch_brcm15
1 files changed, 0 insertions, 15 deletions
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
deleted file mode 100644
index a93559f97b..0000000000
--- a/target/linux/brcm-2.4/base-files/lib/preinit/05_set_failsafe_switch_brcm
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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 -q "$pi_ifname" /proc/net/dev && {
- ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
- }
-}
-
-boot_hook_add failsafe failsafe_ip
-