treewide: remove execute bit and shebang from board.d files
[openwrt/staging/jow.git] / target / linux / sunxi / base-files / etc / board.d / 02_network
index 59af55c7a1d8c26a7fdadcc823e6d7499f76bc80..5b59333b1f04176b6225081dd077cd4f7f95430c 100644 (file)
@@ -1,23 +1,27 @@
-#!/bin/sh
 #
 # Copyright (C) 2013-2015 OpenWrt.org
 #
 
-. /lib/sunxi.sh
-. /lib/functions/uci-defaults-new.sh
+. /lib/functions/uci-defaults.sh
 
 board_config_update
 
-case "$( sunxi_board_name )" in
-"olinuxino-micro"*)
-       ucidef_set_interface_lan 'wlan0'
+case $(board_name) in
+friendlyarm,nanopi-r1)
+       ucidef_set_interfaces_lan_wan "eth1" "eth0"
        ;;
-"lamobo-r1")
+lamobo,lamobo-r1)
        ucidef_add_switch "switch0" \
                "4:lan:1" "0:lan:2" "1:lan:3" "2:lan:4" "3:wan" "8@eth0"
        ;;
+olimex,a20-olinuxino-micro)
+       ucidef_set_interface_lan "wlan0"
+       ;;
+xunlong,orangepi-r1)
+       ucidef_set_interfaces_lan_wan "eth0" "eth1"
+       ;;
 *)
-       ucidef_set_interface_lan 'eth0'
+       ucidef_set_interface_lan "eth0"
        ;;
 esac