2014-06-29 12:50:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2016-10-13 10:52:20 +00:00
|
|
|
# Copyright (C) 2014-2016 OpenWrt.org
|
|
|
|
# Copyright (C) 2016 LEDE-Project.org
|
2014-06-29 12:50:12 +00:00
|
|
|
#
|
|
|
|
|
2015-12-11 15:26:06 +00:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2015-11-20 23:59:31 +00:00
|
|
|
|
2015-11-30 10:43:31 +00:00
|
|
|
board_config_update
|
|
|
|
|
2017-05-12 20:36:07 +00:00
|
|
|
board=$(board_name)
|
2014-06-29 12:50:12 +00:00
|
|
|
|
|
|
|
case "$board" in
|
2019-05-11 17:37:34 +00:00
|
|
|
cznic,turris-omnia)
|
|
|
|
ucidef_set_interface_lan "lan0 lan1 lan2 lan3 lan4"
|
|
|
|
ucidef_set_interface_wan "eth2"
|
|
|
|
;;
|
2019-06-07 13:50:50 +00:00
|
|
|
globalscale,espressobin|\
|
|
|
|
globalscale,espressobin-emmc|\
|
|
|
|
globalscale,espressobin-v7|\
|
|
|
|
globalscale,espressobin-v7-emmc)
|
2019-05-11 17:37:34 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "lan0 lan1" "wan"
|
2017-07-12 02:21:09 +00:00
|
|
|
;;
|
2019-05-11 17:37:34 +00:00
|
|
|
linksys,caiman|\
|
|
|
|
linksys,cobra|\
|
|
|
|
linksys,mamba|\
|
|
|
|
linksys,rango|\
|
|
|
|
linksys,shelby|\
|
|
|
|
linksys,venom)
|
2017-02-07 07:55:46 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth1.2"
|
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
|
|
|
;;
|
2019-05-11 17:37:34 +00:00
|
|
|
marvell,a385-db-ap)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
|
|
|
|
;;
|
|
|
|
marvell,armada8040-mcbin)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0 eth1 eth3" "eth2"
|
|
|
|
;;
|
|
|
|
marvell,armada8040-db)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0 eth2 eth3" "eth1"
|
|
|
|
;;
|
|
|
|
marvell,armada7040-db)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0 eth2" "eth1"
|
|
|
|
;;
|
|
|
|
marvell,armada-3720-db)
|
|
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
|
|
;;
|
|
|
|
marvell,axp-gp)
|
|
|
|
ucidef_set_interface_lan "eth0 eth1 eth2 eth3"
|
2017-06-02 16:31:06 +00:00
|
|
|
;;
|
2019-07-22 11:08:18 +00:00
|
|
|
methode,udpu)
|
2019-06-19 19:00:03 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
|
|
;;
|
2019-05-11 17:37:34 +00:00
|
|
|
solidrun,clearfog*a1)
|
2017-04-24 14:52:31 +00:00
|
|
|
# eth0 is standalone ethernet
|
|
|
|
# eth1 is switch (-pro) or standalone ethernet (-base)
|
|
|
|
# eth2 is SFP
|
2017-05-22 17:07:13 +00:00
|
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0 eth2"
|
2017-04-24 14:52:31 +00:00
|
|
|
|
|
|
|
# if switch exists (clearfog-pro)
|
|
|
|
# switch port 5 is connected to eth1
|
2016-09-26 11:25:44 +00:00
|
|
|
swconfig list 2>&1 | grep -q switch0 && \
|
|
|
|
ucidef_add_switch "switch0" \
|
2017-04-24 14:52:31 +00:00
|
|
|
"0:lan:5" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5u@eth1" "6:lan:6"
|
2017-04-06 18:13:31 +00:00
|
|
|
;;
|
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
|