treewide: drop shebang from non-executable target files
[openwrt/openwrt.git] / target / linux / ath25 / base-files / lib / preinit / 15_preinit_iface_atheros
1 # reset button only supported on ar5315+ at the moment
2 preinit_ip() {
3 if [ -z "$pi_ifname" ]; then
4 grep -q 'Atheros AR231[567]' /proc/cpuinfo && {
5 if [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/0:00" -o \
6 -e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; then
7 vconfig set_name_type DEV_PLUS_VID_NO_PAD
8 ifconfig eth0 up
9 vconfig add eth0 1
10 ifname=eth0.1
11 else
12 ifname=eth0
13 fi
14 pi_ifname=$ifname
15 }
16 fi
17 [ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
18 ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
19 }
20 }
21
22
23 # reset button only supported on ar5315+ at the moment
24
25 preinit_ip_deconfig() {
26 if [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/0:00" -o \
27 -e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; then
28 vconfig rem eth0.1 2>/dev/null
29 ifconfig $pi_ifname down
30 elif [ -n "$pi_ifname" ]; then
31 ifconfig $pi_ifname 0.0.0.0
32 fi
33 }