sunxi: add support for Lamobo R1
[openwrt/svn-archive/archive.git] / target / linux / sunxi / base-files / etc / uci-defaults / 02_network
index 3807926c6d80b77391805847246dea2b9671968b..372fed9e26ab515481ec0fef0a93ffb1e690c8de 100644 (file)
@@ -1,28 +1,30 @@
 #!/bin/sh
 #
 #!/bin/sh
 #
-# Copyright (C) 2013 OpenWrt.org
+# Copyright (C) 2013-2014 OpenWrt.org
 #
 
 [ -e /etc/config/network ] && exit 0
 
 touch /etc/config/network
 
 #
 
 [ -e /etc/config/network ] && exit 0
 
 touch /etc/config/network
 
+. /lib/sunxi.sh
 . /lib/functions/uci-defaults.sh
 
 ucidef_set_interface_loopback
 
 . /lib/functions/uci-defaults.sh
 
 ucidef_set_interface_loopback
 
-case "`cat /proc/device-tree/model`" in
-"Cubietech Cubieboard" |\
-"Cubietech Cubieboard2" |\
-"LinkSprite pcDuino" |\
-"LinkSprite pcDuino V3" |\
-"Olimex A10-OLinuXino-LIME" |\
-"Olimex A20-Olinuxino Micro")
-       ucidef_set_interface_lan 'eth0'
-       ;;
-"Olimex A13-Olinuxino")
+case "$( sunxi_board_name )" in
+"olinuxino-micro"*)
        ucidef_set_interface_lan 'wlan0'
        ;;
        ucidef_set_interface_lan 'wlan0'
        ;;
+"lamobo-r1")
+       ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
+       ucidef_add_switch "switch0" "1" "1"
+       ucidef_add_switch_vlan "switch0" "1" "4 0 1 2 8t"
+       ucidef_add_switch_vlan "switch0" "2" "3 8t"
+       ;;
+*)
+       ucidef_set_interface_lan 'eth0'
+       ;;
 esac
 
 uci commit network
 esac
 
 uci commit network