brcm63xx: move profiles definitions to image/Makefile
[openwrt/staging/yousong.git] / target / linux / brcm63xx / base-files / lib / preinit / 15_set_preinit_interface_brcm63xx
1 #!/bin/sh
2
3 port_net_echo() {
4 [ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && {
5 if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message" = "true" ] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then
6 netmsg $pi_broadcast "$1"
7 fi
8 }
9 }
10
11 preinit_ip_deconfig() {
12 if [ -z "$pi_ifname" ]; then
13 ifconfig $ifname 0.0.0.0 down
14 else
15 grep -q "$pi_ifname" /proc/net/dev && {
16 ifconfig $pi_ifname 0.0.0.0 down
17 }
18 fi
19 }
20
21 preinit_net_echo() {
22 preinit_ip
23
24 port_net_echo $1
25 }
26
27