kirkwood: add support for ipTIME NAS1
[openwrt/openwrt.git] / target / linux / kirkwood / base-files / etc / board.d / 02_network
old mode 100755 (executable)
new mode 100644 (file)
index 355418b..df38694
@@ -1,45 +1,85 @@
-#!/bin/sh
 #
 # Copyright (C) 2012-2015 OpenWrt.org
 #
 
-. /lib/functions/uci-defaults-new.sh
-. /lib/kirkwood.sh
+. /lib/functions/uci-defaults.sh
+. /lib/functions/system.sh
 
-board_config_update
+kirkwood_setup_interfaces()
+{
+       local board="$1"
+
+       case "$board" in
+       checkpoint,l-50)
+               ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4 lan5 lan6 lan7 lan8 dmz" "eth0"
+               ;;
+       cisco,on100)
+               ucidef_set_interface_lan "eth0 eth1"
+               ;;
+       cloudengines,pogoe02|\
+       cloudengines,pogoplugv4|\
+       ctera,c200-v1|\
+       globalscale,sheevaplug|\
+       iom,iconnect-1.1|\
+       iom,ix2-200|\
+       iptime,nas1|\
+       netgear,readynas-duo-v2|\
+       raidsonic,ib-nas62x0|\
+       seagate,blackarmor-nas220|\
+       seagate,dockstar|\
+       seagate,goflexhome|\
+       seagate,goflexnet|\
+       zyxel,nsa310b|\
+       zyxel,nsa310s|\
+       zyxel,nsa325)
+               ucidef_set_interface_lan "eth0" "dhcp"
+               ;;
+       endian,4i-edge-200)
+               ucidef_set_interface_lan "port1 port2 port3 port4 eth1"
+               ;;
+       linksys,e4200-v2|\
+       linksys,ea3500|\
+       linksys,ea4500)
+               ucidef_set_interfaces_lan_wan "ethernet1 ethernet2 ethernet3 ethernet4" "internet"
+               ;;
+       *)
+               ucidef_set_interface_lan "eth0"
+               ;;
+       esac
+}
+
+kirkwood_setup_macs()
+{
+       local board="$1"
+       local lan_mac=""
+       local wan_mac=""
+       local label_mac=""
 
-board=$(kirkwood_board_name)
-
-case "$board" in
-"dockstar"|\
-"goflexhome"|\
-"goflexnet"|\
-"iconnect"|\
-"ib62x0"|\
-"nsa310s"|\
-"pogo_e02")
-       ucidef_set_interface_lan "eth0" "dhcp"
-       ;;
-"linksys-audi")
-       ucidef_add_switch "switch0" \
-               "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "5@eth0" "6@eth1"
-       ;;
-"linksys-viper")
-       ucidef_add_switch "switch0" \
-               "0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "5@eth0" "6@eth1"
-       ;;
-"guruplug-server-plus")
-       ucidef_set_interface_lan "eth0 eth1" "dhcp"
-       ;;
-"sheevaplug" | \
-"sheevaplug-esata")
-       ucidef_set_interface_lan "eth0" "dhcp"
-       ;;
-*)
-       ucidef_set_interface_lan "eth0" "static"
-       ;;
-esac
+       case "$board" in
+       iptime,nas1)
+               lan_mac=$(mtd_get_mac_binary u-boot 0x3ffa8)
+               label_mac=$lan_mac
+               ;;
+       linksys,e4200-v2|\
+       linksys,ea3500|\
+       linksys,ea4500)
+               wan_mac=$(mtd_get_mac_ascii u_env eth1addr)
+               ;;
+       zyxel,nsa310b|\
+       zyxel,nsa325)
+               lan_mac=$(mtd_get_mac_ascii uboot_env ethaddr)
+               ;;
+       esac
 
+       [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
+       [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
+       [ -n "$label_mac" ] && ucidef_set_label_macaddr $label_mac
+}
+
+board_config_update
+board=$(board_name)
+kirkwood_setup_interfaces $board
+kirkwood_setup_macs $board
 board_config_flush
 
 exit 0