summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/base-files/lib/preinit/05_failsafe_config_switch_brcm63xx
blob: b9be96eda6a12906d005b0273e4ddd36fd65df5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

failsafe_ip() {
	[ -d /proc/switch/eth1 ] && [ "$ifname" = "eth1" ] && {
		ifconfig eth1 0.0.0.0 down
		echo "0 1 2 3 4 ${cpu_port:-5u*}" > /proc/switch/eth1/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