diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-05-08 17:07:18 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-05-08 17:07:18 +0000 |
commit | 23ddfd17071899e5ced845f6a4726d05df832707 (patch) | |
tree | e4f50173375fa06c002679128047d12d6638a6f2 /target | |
parent | 32a70e2b5c2c9ce07d04e113711f3edae396cd42 (diff) | |
download | upstream-23ddfd17071899e5ced845f6a4726d05df832707.tar.gz upstream-23ddfd17071899e5ced845f6a4726d05df832707.tar.bz2 upstream-23ddfd17071899e5ced845f6a4726d05df832707.zip |
ar71xx: add user-space model detection for the RNX-N360RT board
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36581 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 900c9ad1c6..194a40b5c3 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -62,12 +62,22 @@ tplink_get_hwid() { dd if=$part bs=4 count=1 skip=16 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"' } +tplink_get_mid() { + local part + + part=$(find_mtd_part firmware) + [ -z "$part" ] && return 1 + + dd if=$part bs=4 count=1 skip=17 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"' +} + tplink_board_detect() { local model="$1" local hwid local hwver hwid=$(tplink_get_hwid) + mid=$(tplink_get_mid) hwver=${hwid:6:2} hwver="v${hwver#0}" @@ -106,7 +116,12 @@ tplink_board_detect() { model="TP-Link TL-WA901N/ND" ;; "094100"*) - model="TP-Link TL-WR941N/ND" + if [ "$hwid" == "09410002" -a "$mid" == "00420001" ]; then + model="Rosewill RNX-N360RT" + hwver="" + else + model="TP-Link TL-WR941N/ND" + fi ;; "104100"*) model="TP-Link TL-WR1041N/ND" |