diff options
author | John Crispin <john@openwrt.org> | 2014-11-06 09:31:31 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-11-06 09:31:31 +0000 |
commit | cadf5171074f7b18d007470b9f89deea87bb4c46 (patch) | |
tree | 2a4982693fd872563f0aabe73941c705e2cc21ed /target/linux/ramips/base-files | |
parent | f8404aaf9e44bab6fb629d5ee106e50ca2943d1c (diff) | |
download | upstream-cadf5171074f7b18d007470b9f89deea87bb4c46.tar.gz upstream-cadf5171074f7b18d007470b9f89deea87bb4c46.tar.bz2 upstream-cadf5171074f7b18d007470b9f89deea87bb4c46.zip |
ralink: add support for mt7628
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 43197
Diffstat (limited to 'target/linux/ramips/base-files')
3 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/ramips/base-files/etc/board.d/02_network b/target/linux/ramips/base-files/etc/board.d/02_network index 924be3665e..a53a032b7d 100755 --- a/target/linux/ramips/base-files/etc/board.d/02_network +++ b/target/linux/ramips/base-files/etc/board.d/02_network @@ -115,6 +115,7 @@ ramips_setup_interfaces() dir-320-b1 | \ dir-615-h1 | \ hlk-rm04 | \ + mt7628 | \ mzk-w300nh2 | \ mzk-750dhp | \ whr-300hp2 | \ diff --git a/target/linux/ramips/base-files/lib/preinit/07_set_preinit_iface_ramips b/target/linux/ramips/base-files/lib/preinit/07_set_preinit_iface_ramips index ab87421bb9..cae6396a73 100644 --- a/target/linux/ramips/base-files/lib/preinit/07_set_preinit_iface_ramips +++ b/target/linux/ramips/base-files/lib/preinit/07_set_preinit_iface_ramips @@ -6,12 +6,12 @@ . /lib/ramips.sh ramips_set_preinit_iface() { - RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350)"` + RT3X5X=`cat /proc/cpuinfo | egrep "(RT3.5|RT5350|MT7628)"` if [ -n "${RT3X5X}" ]; then swconfig dev rt305x set reset 1 fi - if echo $RT3X5X | grep -q RT5350; then + if echo $RT3X5X | egrep -q "(RT5350|MT7628)"; then # This is a dirty hack to get by while the switch # problem is investigated. When VLAN is disabled, ICMP # pings work as expected, but TCP connections time diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh index e42f719cd8..7538876697 100755 --- a/target/linux/ramips/base-files/lib/ramips.sh +++ b/target/linux/ramips/base-files/lib/ramips.sh @@ -355,6 +355,9 @@ ramips_board_detect() { *"Lenovo Y1S") name="y1s" ;; + *"Mediatek MT7628AN evaluation board") + name="mt7628" + ;; *) name="generic" ;; |