ar71xx: add support for TP-LINK CPE510 V2.0
authorAndrew Cameron <apcameron@softhome.net>
Wed, 27 Jun 2018 03:09:03 +0000 (22:09 -0500)
committerJohn Crispin <john@phrozen.org>
Thu, 2 Aug 2018 05:49:26 +0000 (07:49 +0200)
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>
target/linux/ar71xx/base-files/lib/ar71xx.sh
target/linux/ar71xx/base-files/lib/upgrade/platform.sh
tools/firmware-utils/src/tplink-safeloader.c

index 8f31f3ed70894274f8f40a357f0fec69934f0e99..05f497fcbf102a4c1769295a94b5846806ef7345 100755 (executable)
@@ -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"
index d469699d3cfa2023c3b4b68fbbbdb14ee3cf435d..3068aa4235582d6e8fa5e27d2ccaac6a9d3f8f44 100755 (executable)
@@ -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|\
index 15eaa830d6fed15f2b90933e253fd42832845601..78092bc535c629f3f64be4223b13495759dde75d 100644 (file)
@@ -210,7 +210,17 @@ static struct device_info boards[] = {
                        "CPE510(TP-LINK|EU|N300-5):1.1\r\n"
                        "CPE520(TP-LINK|UN|N300-5):1.1\r\n"
                        "CPE520(TP-LINK|US|N300-5):1.1\r\n"
-                       "CPE520(TP-LINK|EU|N300-5):1.1\r\n",
+                       "CPE520(TP-LINK|EU|N300-5):1.1\r\n"
+                       "CPE510(TP-LINK|EU|N300-5|00000000):2.0\r\n"
+                       "CPE510(TP-LINK|EU|N300-5|45550000):2.0\r\n"
+                       "CPE510(TP-LINK|EU|N300-5|55530000):2.0\r\n"
+                       "CPE510(TP-LINK|UN|N300-5|00000000):2.0\r\n"
+                       "CPE510(TP-LINK|UN|N300-5|45550000):2.0\r\n"
+                       "CPE510(TP-LINK|UN|N300-5|55530000):2.0\r\n"
+                       "CPE510(TP-LINK|US|N300-5|55530000):2.0\r\n"
+                       "CPE510(TP-LINK|UN|N300-5):2.0\r\n"
+                       "CPE510(TP-LINK|EU|N300-5):2.0\r\n"
+                       "CPE510(TP-LINK|US|N300-5):2.0\r\n",
                .support_trail = '\xff',
                .soft_ver = NULL,