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 | c4d0a493483d62624e82fd7f843d86911f654663 (patch) | |
tree | b1283fa3763648e5cdfb8b5e11094e5f2112138f | |
parent | cc7bedf8a3aebbc5a2f2845305c946679720c6f9 (diff) | |
download | upstream-c4d0a493483d62624e82fd7f843d86911f654663.tar.gz upstream-c4d0a493483d62624e82fd7f843d86911f654663.tar.bz2 upstream-c4d0a493483d62624e82fd7f843d86911f654663.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>
SVN-Revision: 36727
-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"*) |