diff options
author | Andrew Cameron <apcameron@softhome.net> | 2018-06-26 22:09:03 -0500 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-08-02 07:49:26 +0200 |
commit | bae927c551fdd91fbc8343071e4b5c44f73eee0d (patch) | |
tree | 3af9145b53e71f7065b6b1ced8af11ecc1dca07e /target/linux/ar71xx/base-files/lib/ar71xx.sh | |
parent | b9bd3285c7c6fbc60374b05ac2da9be41ce75651 (diff) | |
download | upstream-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/ar71xx.sh')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 9 |
1 files changed, 8 insertions, 1 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" |