43da8cc0689134f19808c7e968dd7e043f5b21d3
[openwrt/svn-archive/archive.git] / target / linux / brcm63xx / base-files / lib / preinit / 05_failsafe_config_switch_brcm63xx
1 #!/bin/sh
2
3 failsafe_ip() {
4 [ -d "/proc/switch/$ifname" ] && {
5 ifconfig "$ifname" 0.0.0.0 down
6 echo "0 1 2 3 4 ${cpu_port:-5u*}" > "/proc/switch/$ifname/vlan/0/ports"
7 }
8
9 [ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
10 ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
11 }
12 }
13
14 boot_hook_add failsafe failsafe_ip
15