03153b73d0b00dbf7b15f684e7255fecc746bbf3
[openwrt/openwrt.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 ucidef_set_interfaces_lan_wan "eth1" "eth0"
14 ;;
15 ocedo,panda)
16 ucidef_set_interface_wan "eth1"
17 ucidef_add_switch "switch0" \
18 "0:lan" "1:lan" "2:lan" "3:lan" "4:lan" "5:lan" "6:lan" "7:lan" "8u@eth0"
19 ;;
20 tplink,tl-wdr4900-v1)
21 ucidef_add_switch "switch0" \
22 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
23 ucidef_set_interface_macaddr "wan" "$(macaddr_add $(mtd_get_mac_binary u-boot 0x4fc00) 1)"
24 ;;
25 *)
26 ucidef_set_interfaces_lan_wan "eth0" "eth1"
27 ;;
28 esac
29
30 board_config_flush
31
32 exit 0