aa33a4af963e7212d6c7eea94ac65c7b030d8c81
[openwrt/openwrt.git] / target / linux / mpc85xx / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 # Copyright (C) 2014-2015 OpenWrt.org
3
4 . /lib/functions/uci-defaults.sh
5 . /lib/functions.sh
6 . /lib/functions/system.sh
7
8 board_config_update
9
10 board=$(board_name)
11
12 case "$board" in
13 aerohive,hiveap-330)
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_add_switch "switch0" \
23 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
24 ucidef_set_interface_macaddr "wan" "$(macaddr_add $(mtd_get_mac_binary u-boot 0x4fc00) 1)"
25 ;;
26 *)
27 ucidef_set_interfaces_lan_wan "eth0" "eth1"
28 ;;
29 esac
30
31 board_config_flush
32
33 exit 0