2013-05-29 09:27:29 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
|
|
#
|
|
|
|
|
|
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/network
|
|
|
|
|
2013-10-16 11:25:51 +08:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2013-05-29 09:27:29 +08:00
|
|
|
|
2013-10-16 11:25:51 +08:00
|
|
|
ucidef_set_interface_loopback
|
2013-05-29 09:27:29 +08:00
|
|
|
|
2013-10-16 11:25:51 +08:00
|
|
|
case "`cat /proc/device-tree/model`" in
|
2013-10-29 10:19:07 +08:00
|
|
|
"Gateworks Ventana i.MX6 DualLite GW51XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 DualLite GW52XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Quad GW51XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Quad GW52XX")
|
2013-09-14 05:50:35 +08:00
|
|
|
ucidef_set_interface_lan 'eth0'
|
|
|
|
;;
|
2013-10-29 10:19:07 +08:00
|
|
|
"Gateworks Ventana i.MX6 DualLite GW53XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 DualLite GW54XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Quad GW53XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Quad GW54XX" |\
|
2013-09-20 09:59:30 +08:00
|
|
|
"Gateworks Ventana GW5400-A")
|
|
|
|
ucidef_set_interfaces_lan_wan 'eth0' 'eth1'
|
|
|
|
;;
|
2013-05-29 09:27:29 +08:00
|
|
|
"Wandboard i.MX6 Dual Lite Board")
|
|
|
|
ucidef_set_interface_wan 'eth0'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
uci commit network
|
|
|
|
|
|
|
|
exit 0
|