diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-04-04 16:06:29 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-04-04 16:06:29 +0000 |
commit | 896063471e9bd794bd3710b59fa42c10aea072b5 (patch) | |
tree | 2bba0d3f4b43226f63e8049b26c385a2b94d6cb8 /target | |
parent | 69d74cf63c6e08312d3fbfa637bc0c9d28a909cf (diff) | |
download | master-187ad058-896063471e9bd794bd3710b59fa42c10aea072b5.tar.gz master-187ad058-896063471e9bd794bd3710b59fa42c10aea072b5.tar.bz2 master-187ad058-896063471e9bd794bd3710b59fa42c10aea072b5.zip |
[orion] generic: use magic_long in sysupgrade
Signed-off-by: Matthias Bücher <mail@maddes.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31200 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/orion/generic/base-files/lib/upgrade/platform.sh | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/target/linux/orion/generic/base-files/lib/upgrade/platform.sh b/target/linux/orion/generic/base-files/lib/upgrade/platform.sh index fdd26c5176..9c9967e4af 100644 --- a/target/linux/orion/generic/base-files/lib/upgrade/platform.sh +++ b/target/linux/orion/generic/base-files/lib/upgrade/platform.sh @@ -1,3 +1,7 @@ +# +# Copyright (C) 2010-2011 OpenWrt.org +# + # use default "image" for PART_NAME # use default for platform_do_upgrade() @@ -6,17 +10,20 @@ platform_check_image() { local hardware=`sed -n /Hardware/s/.*:.//p /proc/cpuinfo` local magic="$(get_magic_word "$1")" + local magic_long="$(get_magic_long "$1")" case "${hardware}" in - # hardware with padded uImage + padded rootfs + # hardware with a direct uImage partition + # image header format as described in U-Boot's include/image.h + # see http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=blob;f=include/image.h 'Linksys WRT350N v2') - [ "${magic}" != '2705' ] && { - echo "Invalid image type ${magic}." + [ "${magic_long}" != '27051956' ] && { + echo "Invalid image type ${magic_long}." return 1 } return 0 ;; - # Netgear WNR854T has extra header before uImage + # Netgear WNR854T (has uImage as file inside a JFFS2 partition) 'Netgear WNR854T') [ "${magic}" != '8519' ] && { echo "Invalid image type ${magic}." |