ramips: Add userspace support for the Edimax BR-6475nD
authorJohn Crispin <blogic@openwrt.org>
Wed, 15 Jan 2014 18:29:44 +0000 (18:29 +0000)
committerJohn Crispin <blogic@openwrt.org>
Wed, 15 Jan 2014 18:29:44 +0000 (18:29 +0000)
The rt2x00 wifi driver may still need updating to
function with this device.

Signed-off-by: Christopher Lais <chris+openwrt@zenthought.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39298 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ramips/base-files/etc/diag.sh
target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
target/linux/ramips/base-files/etc/uci-defaults/01_leds
target/linux/ramips/base-files/etc/uci-defaults/02_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 1d8bef1..d57cc7a 100755 (executable)
@@ -21,7 +21,7 @@ get_status_led() {
        br6524n)
                status_led="edimax:blue:power"
                ;;
-       br6425)
+       br6425 | br-6475nd)
                status_led="edimax:green:power"
                ;;
        d105)
index d38aadd..5906e68 100644 (file)
@@ -66,6 +66,7 @@ case "$FIRMWARE" in
        awm002-evb | \
        bc2 | \
        br6425 | \
+       br-6475nd | \
        broadway | \
        br6524n | \
        carambola | \
index 0c54cde..ca4c131 100755 (executable)
@@ -47,6 +47,9 @@ case $board in
        br6425)
                set_wifi_led "edimax:orange:wlan"
                ;;
+       br-6475nd)
+               set_wifi_led "edimax:amber:wlan"
+               ;;
        broadway)
                set_usb_led "red:diskmounted"
                set_wifi_led "red:wps_active"
index 7c14ad3..65c0589 100755 (executable)
@@ -65,6 +65,13 @@ ramips_setup_interfaces()
                ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
                ;;
 
+       br-6475nd)
+               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 9t"
+               ucidef_add_switch_vlan "switch0" "2" "0 9t"
+               ;;
+
        asl26555)
                ucidef_set_interface_lan "eth0.1"
                ucidef_add_switch "switch0" "1" "1"
@@ -166,6 +173,11 @@ ramips_setup_macs()
                wan_mac=$(macaddr_add "$lan_mac" 1)
                ;;
 
+       br-6475nd)
+               lan_mac=$(mtd_get_mac_binary devdata 13)
+               wan_mac=$(mtd_get_mac_binary devdata 7)
+               ;;
+
        w306r-v20)
                wan_mac=$(macaddr_add "$lan_mac" 5)
                ;;
index 96665bd..d2dc00f 100644 (file)
@@ -39,6 +39,10 @@ preinit_set_mac_address() {
                mac=$(macaddr_setbit_la "$mac")
                ifconfig eth0 hw ether $mac 2>/dev/null
                ;;
+       br-6475nd)
+               mac=$(mtd_get_mac_binary devdata 13)
+               ifconfig eth0 hw ether $mac 2>/dev/null
+               ;;
        asl26555 |\
        dir-300-b1 |\
        dir-300-b2 |\
index 24aad1f..7aa3313 100755 (executable)
@@ -109,6 +109,9 @@ ramips_board_detect() {
        *"ESR-9753")
                name="esr-9753"
                ;;
+       *"Edimax BR-6475nD")
+               name="br-6475nd"
+               ;;
        *"F7C027")
                name="f7c027"
                ;;
index 0230a18..8bc2abd 100755 (executable)
@@ -100,6 +100,13 @@ platform_check_image() {
                }
                return 0
                ;;
+       br-6475nd)
+               [ "$magic" != "43535953" ] && {
+                       echo "Invalid image type."
+                       return 1
+               }
+               return 0
+               ;;
        esac
 
        echo "Sysupgrade is not yet supported on $board."