tools/patchelf: update to 0.18.0
[openwrt/staging/dedeckeh.git] / target / linux / mpc85xx / base-files / etc / board.d / 02_network
1 # Copyright (C) 2014-2015 OpenWrt.org
2
3 . /lib/functions/uci-defaults.sh
4 . /lib/functions.sh
5 . /lib/functions/system.sh
6
7 board_config_update
8
9 board=$(board_name)
10
11 case "$board" in
12 aerohive,hiveap-330|\
13 enterasys,ws-ap3715i)
14 ucidef_set_interfaces_lan_wan "eth1" "eth0"
15 ;;
16 ocedo,panda)
17 ucidef_set_interface_wan "eth1"
18 ucidef_add_switch "switch0" \
19 "0:lan" "1:lan" "2:lan" "3:lan" "4:lan" "5:lan" "6:lan" "7:lan" "8u@eth0"
20 ;;
21 tplink,tl-wdr4900-v1)
22 ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4" "wan"
23 ucidef_set_interface_macaddr "wan" "$(macaddr_add $(mtd_get_mac_binary u-boot 0x4fc00) 1)"
24 ;;
25 watchguard,firebox-t10)
26 ucidef_set_interfaces_lan_wan "eth1 eth2" "eth0"
27 ;;
28 *)
29 ucidef_set_interfaces_lan_wan "eth0" "eth1"
30 ;;
31 esac
32
33 board_config_flush
34
35 exit 0