imx6: fix platform checking
[openwrt.git] / target / linux / imx6 / base-files / etc / uci-defaults / 02_network
index 96e4da8..bf83063 100644 (file)
@@ -5,19 +5,26 @@
 
 [ -e /etc/config/network ] && exit 0
 
+touch /etc/config/network
+
 . /lib/functions/uci-defaults.sh
+. /lib/imx6.sh
 
-touch /etc/config/network
+board=$(imx6_board_name)
 
 ucidef_set_interface_loopback
 
-board=$(cat /proc/device-tree/model)
-
 case "$board" in
-"Gateworks Ventana GW5400-A")
+*gw51xx |\
+*gw52xx)
        ucidef_set_interface_lan 'eth0'
        ;;
-"Wandboard i.MX6 Dual Lite Board")
+*gw53xx |\
+*gw54xx |\
+*gw552x)
+       ucidef_set_interfaces_lan_wan 'eth0' 'eth1'
+       ;;
+*wandboard)
        ucidef_set_interface_wan 'eth0'
        ;;
 esac