Skip to content
Snippets Groups Projects
Commit 06edafd0 authored by Gabor Juhos's avatar Gabor Juhos
Browse files

ramips: add user space support for the DIR-645


Signed-off-by: default avatarGabor Juhos <juhosg@openwrt.org>

SVN-Revision: 33844
parent d1a253a2
No related branches found
No related tags found
No related merge requests found
......@@ -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"
;;
......
#!/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
......@@ -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)
......
......@@ -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
......
......@@ -92,6 +92,9 @@ ramips_board_name() {
*"DIR-615 H1")
name="dir-615-h1"
;;
*"DIR-645")
name="dir-645"
;;
*"DAP-1350")
name="dap-1350"
;;
......
......@@ -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."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment