511b56b1cc72ab1405df6950f1623da0c73acd45
[openwrt/staging/hauke.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 tl-wdr4900-v1)
14 ucidef_add_switch "switch0" \
15 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
16 ucidef_set_interface_macaddr "wan" "$(mtd_get_mac_binary config 332)"
17 ;;
18 *)
19 ucidef_set_interfaces_lan_wan "eth0" "eth1"
20 ;;
21 esac
22
23 board_config_flush
24
25 exit 0