diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 18:11:51 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 18:11:51 +0000 |
commit | e8c0dabf9a8d1068e82f62bdc32d5bdc6b6a2d7a (patch) | |
tree | 1833c5db7ef1611aa0cdf7a1158e8e3e7845862a /target/linux/ar71xx/base-files/lib/upgrade | |
parent | 287e495fdd697e3def6277627ffc8da0fffd466d (diff) | |
download | upstream-e8c0dabf9a8d1068e82f62bdc32d5bdc6b6a2d7a.tar.gz upstream-e8c0dabf9a8d1068e82f62bdc32d5bdc6b6a2d7a.tar.bz2 upstream-e8c0dabf9a8d1068e82f62bdc32d5bdc6b6a2d7a.zip |
ar71xx: verify hardware id of firmware images on TP-Link boards
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29455 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/upgrade')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index 8b69bc59a6..d2780a50a1 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -61,6 +61,10 @@ platform_do_upgrade_combined() { fi } +tplink_get_image_hwid() { + get_image "$@" | dd bs=4 count=1 skip=16 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"' +} + platform_check_image() { local board=$(ar71xx_board_name) local magic="$(get_magic_word "$1")" @@ -125,6 +129,18 @@ platform_check_image() { echo "Invalid image type." return 1 } + + local hwid + local imageid + + hwid=$(tplink_get_hwid) + imageid=$(tplink_get_image_hwid "$1") + + [ "$hwid" != "$imageid" ] && { + echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid." + return 1 + } + return 0 ;; wndr3700) |