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-11-20 23:59:31 +00:00
|
|
|
. /lib/functions/uci-defaults-new.sh
|
2014-06-29 12:50:12 +00:00
|
|
|
. /lib/mvebu.sh
|
|
|
|
|
2015-11-20 23:59:31 +00:00
|
|
|
board_config_update
|
|
|
|
|
2014-06-29 12:50:12 +00:00
|
|
|
ucidef_set_interface_loopback
|
|
|
|
|
|
|
|
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-02-23 10:35:29 +00:00
|
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5"
|
|
|
|
ucidef_add_switch_vlan "switch0" "2" "4 6"
|
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"
|
|
|
|
;;
|
2014-06-29 12:50:12 +00:00
|
|
|
*)
|
|
|
|
ucidef_set_interface_lan "eth0"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2015-11-20 23:59:31 +00:00
|
|
|
board_config_flush
|
2014-06-29 12:50:12 +00:00
|
|
|
|
|
|
|
exit 0
|