2013-02-21 19:20:34 +00:00
|
|
|
#!/bin/sh
|
2015-11-20 23:52:31 +00:00
|
|
|
# Copyright (C) 2014-2015 OpenWrt.org
|
2013-02-21 19:20:34 +00:00
|
|
|
|
2015-11-20 23:52:31 +00:00
|
|
|
. /lib/functions/uci-defaults-new.sh
|
2013-02-21 19:20:34 +00:00
|
|
|
. /lib/mpc85xx.sh
|
2014-10-26 17:58:53 +00:00
|
|
|
. /lib/functions.sh
|
|
|
|
. /lib/functions/system.sh
|
2013-02-21 19:20:34 +00:00
|
|
|
|
2015-11-20 23:52:31 +00:00
|
|
|
board_config_update
|
|
|
|
|
2013-02-21 19:20:34 +00:00
|
|
|
board=$(mpc85xx_board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
|
|
|
tl-wdr4900-v1)
|
2015-12-03 17:30:24 +00:00
|
|
|
ucidef_add_switch "switch0" \
|
2015-12-01 09:22:53 +00:00
|
|
|
"0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
|
2013-02-21 19:20:34 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2015-11-20 23:52:31 +00:00
|
|
|
board_config_flush
|
2013-02-21 19:20:34 +00:00
|
|
|
|
|
|
|
exit 0
|