ramips: add user space support for the DIR-645
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 33844
This commit is contained in:
parent
d1a253a2fd
commit
06edafd079
6 changed files with 50 additions and 0 deletions
|
@ -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"
|
||||
;;
|
||||
|
|
20
target/linux/ramips/base-files/etc/uci-defaults/fixseama
Executable file
20
target/linux/ramips/base-files/etc/uci-defaults/fixseama
Executable file
|
@ -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
|
|
@ -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."
|
||||
|
|
Loading…
Reference in a new issue