aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/base-files/lib
diff options
context:
space:
mode:
authorAndrew Cameron <apcameron@softhome.net>2018-06-26 22:09:03 -0500
committerJohn Crispin <john@phrozen.org>2018-08-02 07:49:26 +0200
commitbae927c551fdd91fbc8343071e4b5c44f73eee0d (patch)
tree3af9145b53e71f7065b6b1ced8af11ecc1dca07e /target/linux/ar71xx/base-files/lib
parentb9bd3285c7c6fbc60374b05ac2da9be41ce75651 (diff)
downloadupstream-bae927c551fdd91fbc8343071e4b5c44f73eee0d.tar.gz
upstream-bae927c551fdd91fbc8343071e4b5c44f73eee0d.tar.bz2
upstream-bae927c551fdd91fbc8343071e4b5c44f73eee0d.zip
ar71xx: add support for TP-LINK CPE510 V2.0
Adds Support for the TP-LINK CPE510 V2.0 by TP-Link. The hardware is almost the same as the CPE510 V1.0 Follow the same processes as for the CPE510 V1.0 Signed-off-by: Andrew Cameron <apcameron@softhome.net>
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/ar71xx.sh9
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/upgrade/platform.sh15
2 files changed, 22 insertions, 2 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh
index 8f31f3ed70..05f497fcbf 100755
--- a/target/linux/ar71xx/base-files/lib/ar71xx.sh
+++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh
@@ -585,7 +585,14 @@ ar71xx_board_detect() {
;;
*"CPE510/520")
name="cpe510"
- tplink_pharos_board_detect "$(tplink_pharos_get_model_string | tr -d '\r')"
+ tplink_pharos_board_detect "$(tplink_pharos_v2_get_model_string)"
+ case $AR71XX_MODEL in
+ 'TP-Link CPE510 v2.0')
+ ;;
+ *)
+ tplink_pharos_board_detect "$(tplink_pharos_get_model_string | tr -d '\r')"
+ ;;
+ esac
;;
*"CPE830")
name="cpe830"
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
index d469699d3c..3068aa4235 100755
--- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
@@ -582,7 +582,6 @@ platform_check_image() {
return $?
;;
cpe210|\
- cpe510|\
eap120|\
wbs210|\
wbs510)
@@ -593,6 +592,20 @@ platform_check_image() {
tplink_pharos_check_image "$1" "01000000" "$(tplink_pharos_v2_get_model_string)" '\0\xff\r' && return 0
return 1
;;
+ cpe510)
+ local modelstr="$(tplink_pharos_v2_get_model_string)"
+ tplink_pharos_board_detect $modelstr
+ case $AR71XX_MODEL in
+ 'TP-Link CPE510 v2.0')
+ tplink_pharos_check_image "$1" "7f454c46" "$modelstr" '\0\xff\r' && return 0
+ return 1
+ ;;
+ *)
+ tplink_pharos_check_image "$1" "7f454c46" "$(tplink_pharos_get_model_string)" '' && return 0
+ return 1
+ ;;
+ esac
+ ;;
a40|\
a60|\
mr1750|\