a8b748275e01a3e4917190655967f40a089a78e7
[openwrt/svn-archive/archive.git] / target / linux / imx6 / base-files / etc / uci-defaults / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2013 OpenWrt.org
4 #
5
6 [ -e /etc/config/network ] && exit 0
7
8 touch /etc/config/network
9
10 . /lib/functions/uci-defaults.sh
11
12 ucidef_set_interface_loopback
13
14 case "`cat /proc/device-tree/model`" in
15 "Gateworks Ventana GW51XX" |\
16 "Gateworks Ventana GW52XX")
17 ucidef_set_interface_lan 'eth0'
18 ;;
19 "Gateworks Ventana GW53XX" |\
20 "Gateworks Ventana GW54XX" |\
21 "Gateworks Ventana GW5400-A")
22 ucidef_set_interfaces_lan_wan 'eth0' 'eth1'
23 ;;
24 "Wandboard i.MX6 Dual Lite Board")
25 ucidef_set_interface_wan 'eth0'
26 ;;
27 esac
28
29 uci commit network
30
31 exit 0