The Traverse LS1043 boards were not publicly released, all the production has been going to OEM customers who do not use the image format defined in the OpenWrt tree. Only a few samples were circulated outside Traverse and our OEM customers. The public release (then called Five64) of this series was cancelled in favour of our LS1088A based design (Ten64). It is best to remove these boards to avoid wasting OpenWrt project and contributor resources. Signed-off-by: Mathew McBride <matt@traverse.com.au>
20 lines
355 B
Text
20 lines
355 B
Text
|
|
. /lib/functions/system.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
case "$(board_name)" in
|
|
fsl,ls1028a-rdb|\
|
|
fsl,ls1028a-rdb-sdboot)
|
|
ucidef_set_interfaces_lan_wan "swp0 swp1 swp2 swp3" "eth0"
|
|
;;
|
|
traverse,ten64)
|
|
ucidef_set_interface_lan "eth0 eth1 eth2 eth3"
|
|
ucidef_set_interface_wan "eth6"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|