19f01a658970e497943baefb9bc41d2dd07f5c74
[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 tplink,tl-wdr4900-v1)
17 ucidef_add_switch "switch0" \
18 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
19 ucidef_set_interface_macaddr "wan" "$(mtd_get_mac_binary config 332)"
20 ;;
21 *)
22 ucidef_set_interfaces_lan_wan "eth0" "eth1"
23 ;;
24 esac
25
26 board_config_flush
27
28 exit 0