diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2018-02-03 14:12:05 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2018-02-03 14:14:35 +0100 |
commit | b1205a921177607c572605601b6e8ca5b6816838 (patch) | |
tree | f572bf2e27b78ac0bfef4a12b08caa2336e92d04 | |
parent | fbeae9d891e7661cfb9f9d5209f9656234466127 (diff) | |
download | upstream-b1205a921177607c572605601b6e8ca5b6816838.tar.gz upstream-b1205a921177607c572605601b6e8ca5b6816838.tar.bz2 upstream-b1205a921177607c572605601b6e8ca5b6816838.zip |
ar71xx: /lib/ar71xx.sh: add model detection for TP-Link TL-WR810N
Properly report the revision in /tmp/sysinfo/model.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index bf365988ac..170c6f01b4 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -221,6 +221,9 @@ tplink_board_detect() { "080200"*) model="TP-Link TL-WR802N" ;; + "081000"*) + model="TP-Link TL-WR810N" + ;; "083000"*) model="TP-Link TL-WA830RE" |