diff options
author | Henryk Heisig <hyniu@o2.pl> | 2016-09-24 21:41:43 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-12-22 15:03:30 +0100 |
commit | c8043137bbd323b1490ae8613eab915ba9c138ee (patch) | |
tree | 6ebd7b34943ad84fe7df3a008a03a319ccdf197c /target/linux/ramips/base-files/lib | |
parent | 190ee7d86b450083fea4236d588d0d88a50e1311 (diff) | |
download | upstream-c8043137bbd323b1490ae8613eab915ba9c138ee.tar.gz upstream-c8043137bbd323b1490ae8613eab915ba9c138ee.tar.bz2 upstream-c8043137bbd323b1490ae8613eab915ba9c138ee.zip |
ramips: Add support to TP-Link Archer MR200
CPU: MT7620N 580MHz
Flash: 8MB
RAM: 64MB
build-in modem 3G/4G
four ethernet port 10/100Mbps
Signed-off-by: Henryk Heisig <hyniu@o2.pl>
Diffstat (limited to 'target/linux/ramips/base-files/lib')
-rwxr-xr-x | target/linux/ramips/base-files/lib/ramips.sh | 3 | ||||
-rwxr-xr-x | target/linux/ramips/base-files/lib/upgrade/platform.sh | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh index cc6f00fd55..50903c75d6 100755 --- a/target/linux/ramips/base-files/lib/ramips.sh +++ b/target/linux/ramips/base-files/lib/ramips.sh @@ -295,6 +295,9 @@ ramips_board_detect() { *"MR-102N") name="mr-102n" ;; + *"MR200") + name="mr200" + ;; *"MT7620a + MT7530 evaluation"*) name="mt7620a_mt7530" ;; diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index 2151cf945c..78e87a09f2 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -204,7 +204,8 @@ platform_check_image() { return 0 ;; c20i|\ - c50) + c50|\ + mr200) [ "$magic" != "03000000" ] && { echo "Invalid image type." return 1 |