Files
wifipineapple-openwrt/target/linux/imx6/base-files/etc/uci-defaults/02_network
Luka Perkov a9f1f03438 imx6: use upstream gateworks board names
Signed-off-by: Luka Perkov <luka@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38573 3c298f89-4303-0410-b956-a3cf2f4a3e73
2013-10-29 02:19:07 +00:00

36 lines
781 B
Bash

#!/bin/sh
#
# Copyright (C) 2013 OpenWrt.org
#
[ -e /etc/config/network ] && exit 0
touch /etc/config/network
. /lib/functions/uci-defaults.sh
ucidef_set_interface_loopback
case "`cat /proc/device-tree/model`" in
"Gateworks Ventana i.MX6 DualLite GW51XX" |\
"Gateworks Ventana i.MX6 DualLite GW52XX" |\
"Gateworks Ventana i.MX6 Quad GW51XX" |\
"Gateworks Ventana i.MX6 Quad GW52XX")
ucidef_set_interface_lan 'eth0'
;;
"Gateworks Ventana i.MX6 DualLite GW53XX" |\
"Gateworks Ventana i.MX6 DualLite GW54XX" |\
"Gateworks Ventana i.MX6 Quad GW53XX" |\
"Gateworks Ventana i.MX6 Quad GW54XX" |\
"Gateworks Ventana GW5400-A")
ucidef_set_interfaces_lan_wan 'eth0' 'eth1'
;;
"Wandboard i.MX6 Dual Lite Board")
ucidef_set_interface_wan 'eth0'
;;
esac
uci commit network
exit 0