ramips: add user space support for the DIR-645
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 18 Oct 2012 07:23:03 +0000 (07:23 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 18 Oct 2012 07:23:03 +0000 (07:23 +0000)
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33844 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ramips/base-files/etc/diag.sh
target/linux/ramips/base-files/etc/uci-defaults/fixseama [new file with mode: 0755]
target/linux/ramips/base-files/etc/uci-defaults/network
target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
target/linux/ramips/base-files/lib/ramips.sh
target/linux/ramips/base-files/lib/upgrade/platform.sh

index 4720130..5fad728 100755 (executable)
@@ -39,6 +39,9 @@ get_status_led() {
        dir-300-b1 | dir-600-b1 | dir-600-b2 | dir-615-h1 | dir-620-a1)
                status_led="d-link:green:status"
                ;;
+       dir-645)
+               status_led="d-link:green:wps"
+               ;;
        dap-1350)
                status_led="d-link:blue:power"
                ;;
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/fixseama b/target/linux/ramips/base-files/etc/uci-defaults/fixseama
new file mode 100755 (executable)
index 0000000..d8bed79
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+#
+# Copyright (C) 2012 OpenWrt.org
+#
+
+. /lib/ramips.sh
+
+fix_seama_header() {
+       local part=$1
+
+       mtd fixseama $part
+}
+
+board=$(ramips_board_name)
+
+case "$board" in
+dir-645)
+       fix_seama_header kernel
+       ;;
+esac
index bbb02e8..de33acb 100755 (executable)
@@ -63,6 +63,13 @@ ramips_setup_interfaces()
                ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
                ;;
 
+       dir-645)
+               ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
+               ucidef_add_switch "switch0" "1" "1"
+               ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 6t"
+               ucidef_add_switch_vlan "switch0" "2" "0 6t"
+               ;;
+
        f5d8235-v1 | \
        f5d8235-v2 | \
        ur-336un)
@@ -159,6 +166,11 @@ ramips_setup_macs()
                wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
                ;;
 
+       dir-645)
+               lan_mac=$(ramips_get_mac_nvram nvram lanmac)
+               wan_mac=$(ramips_get_mac_nvram nvram wanmac)
+               ;;
+
        esr-9753 | \
        ur-336un)
                lan_mac=$(ramips_get_mac_binary devdata 16388)
index 591c549..0ff2189 100644 (file)
@@ -30,6 +30,11 @@ preinit_set_mac_address() {
                 mac=$(ramips_get_mac_binary devdata 16388)
                 ifconfig eth0 hw ether $mac 2>/dev/null
                 ;;
+       dir-645)
+               mac=$(ramips_get_mac_nvram nvram lanmac)
+               mac=$(maccalc or "$mac" "02:00:00:00:00:00")
+               ifconfig eth0 hw ether $mac 2>/dev/null
+               ;;
        dap-1350)
                mac=$(ramips_get_mac_binary devdata 46)
                ifconfig eth0 hw ether $mac 2>/dev/null
index 90c28b7..90afa49 100755 (executable)
@@ -92,6 +92,9 @@ ramips_board_name() {
        *"DIR-615 H1")
                name="dir-615-h1"
                ;;
+       *"DIR-645")
+               name="dir-645"
+               ;;
         *"DAP-1350")
                 name="dap-1350"
                 ;;
index 2857599..ba04a4a 100755 (executable)
@@ -57,6 +57,13 @@ platform_check_image() {
                }
                return 0
                ;;
+       dir-645)
+               [ "$magic" != "5ea3a417" ] && {
+                       echo "Invalid image type."
+                       return 1
+               }
+               return 0
+               ;;
        esac
 
        echo "Sysupgrade is not yet supported on $board."