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

ramips: add support for D-Link DIR-615 H1

rt2x00 still needs some patching as the radio doesn't come to life.
Installation via webflash.

[juhosg: fix whitespace issues, remove rt305x_register_usb
from machine setup because the board has no USB port]

Signed-off-by: Mikko Hissa <mikko.hissa@uta.fi>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33205 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2012-08-17 17:56:05 +00:00
parent dc20bb23a2
commit cf26194ba9
13 changed files with 152 additions and 4 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-620-a1)
dir-300-b1 | dir-600-b1 | dir-600-b2 | dir-615-h1 | 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-615-h1 | \
dir-620-a1 | \
esr-9753 | \
fonera20n | \

View File

@@ -32,6 +32,10 @@ case $board in
ucidef_set_led_default "wan" "WAN LED (amber)" "d-link:amber:wan" "1"
set_wifi_led "rt2800pci-phy0::radio"
;;
dir-615-h1)
ucidef_set_led_default "status" "Status LED (amber)" "d-link:amber:status" "0"
set_wifi_led "rt2800pci-phy0::radio"
;;
esr-9753)
set_wifi_led "rt2800pci-phy0::radio"
;;

View File

@@ -18,6 +18,7 @@ ramips_setup_interfaces()
case $board in
all0256n | \
all5002 | \
dir-615-h1 | \
wl-330n)
ucidef_set_interface_lan "eth0.1"
;;
@@ -89,7 +90,8 @@ ramips_setup_macs()
case $board in
all0256n | \
all5002)
all5002 | \
dir-615-h1)
lan_mac=$(ramips_get_mac_binary factory 40)
;;
3g-6200n | \

View File

@@ -35,7 +35,8 @@ preinit_set_mac_address() {
ifconfig eth0 hw ether $mac 2>/dev/null
;;
all0256n |\
all5002 | \
all5002 |\
dir-615-h1 |\
fonera20n |\
hw550-3g |\
nbg-419n |\

View File

@@ -83,6 +83,9 @@ ramips_board_name() {
*"DIR-620 A1")
name="dir-620-a1"
;;
*"DIR-615 H1")
name="dir-615-h1"
;;
*"DAP-1350")
name="dap-1350"
;;

View File

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