1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

ramips: add D-Link DIR-620 A1 support

Full functionality runtime tested, installation via OEM web-interface requires
a follow-up patch.

Thanks go to Sergey Vasilyugin for his patch that pointed me at the missing
bits (including the antiparallel wps led).

Signed-off-by: Paul Fertser <fercerpav@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33142 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2012-08-12 12:48:24 +00:00
parent 5af4d8c19b
commit 0618ae4136
10 changed files with 81 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ get_status_led() {
argus-atp52b)
status_led="argus-atp52b:green:run"
;;
dir-300-b1 | dir-600-b1 | dir-600-b2)
dir-300-b1 | dir-600-b1 | dir-600-b2 | dir-620-a1)
status_led="d-link:green:status"
;;
dap-1350)

View File

@@ -57,6 +57,7 @@ case "$FIRMWARE" in
all5002 | \
argus-atp52b | \
bc2 | \
dir-620-a1 | \
esr-9753 | \
fonera20n | \
freestation5 | \

View File

@@ -26,9 +26,11 @@ case $board in
;;
dir-300-b1|\
dir-600-b1|\
dir-600-b2)
dir-600-b2|\
dir-620-a1)
# ANDed with vlan switch port 4 led state
ucidef_set_led_default "wan" "WAN LED (amber)" "d-link:amber:wan" "1"
set_wifi_led "rt2800pci-phy0::radio"
;;
esr-9753)
set_wifi_led "rt2800pci-phy0::radio"

View File

@@ -94,7 +94,7 @@ ramips_setup_macs()
;;
3g-6200n | \
argus-atp52b | \
b2c | \
bc2 | \
f5d8235-v1 | \
nw718 | \
psr-680w | \
@@ -122,6 +122,12 @@ ramips_setup_macs()
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
;;
dir-620-a1)
lan_mac=$(ramips_get_mac_binary factory 4)
lan_mac=$(maccalc or "$lan_mac" "02:00:00:00:00:00")
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
;;
esr-9753 | \
ur-336un)
lan_mac=$(ramips_get_mac_binary devdata 16388)

View File

@@ -13,6 +13,7 @@ preinit_set_mac_address() {
ifconfig eth0 hw ether $mac 2>/dev/null
;;
bc2 |\
dir-620-a1 |\
esr-9753 |\
freestation5 |\
nw718 |\

View File

@@ -80,6 +80,9 @@ ramips_board_name() {
*"DIR-600 B2")
name="dir-600-b2"
;;
*"DIR-620 A1")
name="dir-620-a1"
;;
*"DAP-1350")
name="dap-1350"
;;

View File

@@ -21,6 +21,7 @@ platform_check_image() {
dir-300-b1 | \
dir-600-b1 | \
dir-600-b2 | \
dir-620-a1 | \
dap-1350 | \
esr-9753 | \
fonera20n | \