diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-05-26 16:38:00 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-05-26 16:38:00 +0000 |
commit | 4fb9476dd32d1785ca9d9cf42de21d9b5f1f7842 (patch) | |
tree | a60ff18cd8f8f00e4687eb9d6326e04509e88c74 /target/linux/ar71xx/base-files/lib | |
parent | bdaf03d8e716c3fa8b2879ad8b3df23eef01c557 (diff) | |
download | master-187ad058-4fb9476dd32d1785ca9d9cf42de21d9b5f1f7842.tar.gz master-187ad058-4fb9476dd32d1785ca9d9cf42de21d9b5f1f7842.tar.bz2 master-187ad058-4fb9476dd32d1785ca9d9cf42de21d9b5f1f7842.zip |
ar71xx: typo in detect TL-MR10U/TL-MR11U
At offset 0x40, signature for TL-MR10U/TL-MR11U begin
from 0x00, not 0x10/0x11.
Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36727 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 4ab0edee15..7cb015d77b 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -132,10 +132,10 @@ tplink_board_detect() { "254300"*) model="TP-Link TL-WR2543N/ND" ;; - "100101"*) + "001001"*) model="TP-Link TL-MR10U" ;; - "110101"*) + "001101"*) model="TP-Link TL-MR11U" ;; "302000"*) |