2014-06-29 12:50:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2015-02-23 10:35:29 +00:00
|
|
|
# Copyright (C) 2014-2015 OpenWrt.org
|
2014-06-29 12:50:12 +00:00
|
|
|
#
|
|
|
|
|
2015-12-11 15:26:06 +00:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2015-11-22 20:52:10 +00:00
|
|
|
. /lib/mvebu.sh
|
2015-11-20 23:59:31 +00:00
|
|
|
|
2015-11-30 10:43:31 +00:00
|
|
|
board_config_update
|
|
|
|
|
2014-06-29 12:50:12 +00:00
|
|
|
board=$(mvebu_board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
2015-04-16 09:54:39 +00:00
|
|
|
armada-385-linksys-caiman)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
|
|
;;
|
|
|
|
armada-385-linksys-cobra)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
|
|
;;
|
2015-10-08 10:01:30 +00:00
|
|
|
armada-385-linksys-shelby)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
|
|
;;
|
2015-04-12 17:29:50 +00:00
|
|
|
armada-xp-linksys-mamba)
|
2014-06-29 12:50:12 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
2015-12-03 17:30:24 +00:00
|
|
|
ucidef_add_switch "switch0" \
|
2015-11-30 10:43:31 +00:00
|
|
|
"0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5@eth0" "4:wan" "6@eth1"
|
2014-06-29 12:50:12 +00:00
|
|
|
;;
|
2015-04-15 16:23:10 +00:00
|
|
|
armada-385-db-ap)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
|
|
|
|
;;
|
2015-04-16 13:53:57 +00:00
|
|
|
armada-xp-gp)
|
|
|
|
ucidef_set_interface_lan "eth0 eth1 eth2 eth3"
|
|
|
|
;;
|
2016-02-17 17:49:26 +00:00
|
|
|
armada-388-clearfog)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
|
|
|
|
;;
|
2014-06-29 12:50:12 +00:00
|
|
|
*)
|
|
|
|
ucidef_set_interface_lan "eth0"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2015-11-30 10:43:31 +00:00
|
|
|
board_config_flush
|
2014-06-29 12:50:12 +00:00
|
|
|
|
|
|
|
exit 0
|