1#!/bin/sh
2# Copyright (C) 2014-2015 OpenWrt.org
3
4. /lib/functions/uci-defaults.sh
5. /lib/mpc85xx.sh
6. /lib/functions.sh
7. /lib/functions/system.sh
8
9board_config_update
10
11board=$(mpc85xx_board_name)
12
13case "$board" in
14tl-wdr4900-v1)
15	ucidef_add_switch "switch0" \
16		"0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
17	ucidef_set_interface_macaddr wan "$(mtd_get_mac_binary config 332)"
18	;;
19*)
20	ucidef_set_interfaces_lan_wan "eth0" "eth1"
21	;;
22esac
23
24board_config_flush
25
26exit 0
27