2
0
forked from Ivasoft/openwrt

ramips: add support for Planex MZK-DP150N

This patch add support for Planex MZK-DP150N.
a mini router on the MT7620A SoC with one Ethernet port and a 802.11n 2.4 GHz radio.

Signed-off-by: YuheiOKAWA <tochiro.srchack@gmail.com>

SVN-Revision: 46405
This commit is contained in:
John Crispin
2015-07-17 12:51:08 +00:00
parent 84b89e4ec4
commit eff79253f2
8 changed files with 135 additions and 0 deletions

View File

@@ -265,6 +265,9 @@ case $board in
zte-q7)
set_wifi_led "zte:blue:status"
;;
mzk-dp150n)
ucidef_set_led_default "power" "power" "mzkdp150n:green:power" "1"
;;
esac
board_config_flush

View File

@@ -261,6 +261,13 @@ ramips_setup_interfaces()
ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
ucidef_add_switch_vlan "switch0" "2" "0 5t"
;;
mzk-dp150n)
ucidef_set_interface_lan "eth0.1"
ucidef_add_switch "switch0" "1" "1"
ucidef_add_switch_vlan "switch0" "1" "0 4 6t"
;;
*)
RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350)"`
if [ -n "${RT3X5X}" ]; then

View File

@@ -249,6 +249,9 @@ get_status_led() {
zte-q7)
status_led="zte:red:status"
;;
mzk-dp150n)
status_led="mzkdp150n:green:power"
;;
esac
}

View File

@@ -421,6 +421,9 @@ ramips_board_detect() {
*"Mediatek MT7628AN evaluation board")
name="mt7628"
;;
*"Planex MZK-DP150N")
name="mzk-dp150n"
;;
*)
name="generic"
;;

View File

@@ -71,6 +71,7 @@ platform_check_image() {
mpr-a2 | \
mr-102n | \
mzk-w300nh2 | \
mzk-dp150n | \
nbg-419n | \
nw718 | \
omni-emb | \