fix sysupgrade endian issues
authorTravis Kemen <thepeople@openwrt.org>
Tue, 22 Jul 2008 01:11:30 +0000 (01:11 +0000)
committerTravis Kemen <thepeople@openwrt.org>
Tue, 22 Jul 2008 01:11:30 +0000 (01:11 +0000)
SVN-Revision: 11900

package/base-files/files/lib/upgrade/common.sh
target/linux/x86/base-files/lib/upgrade/platform.sh

index 7584b773dd33a750a1415cd60b361166e5d3dacd..f0d0c20b900bd92dfb08f1889adad8b75123fb37 100644 (file)
@@ -113,7 +113,7 @@ get_image() {
 }
 
 get_magic_word() {
-       get_image "$1" | dd bs=2 count=1 2>/dev/null | hexdump | awk '$2 { print $2 }'
+       get_image "$1" | dd bs=2 count=1 2>/dev/null | hexdump -C | awk '$2 { print $2 $3 }'
 }
 
 refresh_mtd_partitions() {
index ffd0b93ab47ddf572e1019703c55ae17d1febf35..f4c8334f3663c280c09c51e859e736ab3495eec1 100644 (file)
@@ -2,7 +2,7 @@ platform_check_image() {
        [ "$ARGC" -gt 1 ] && return 1
 
        case "$(get_magic_word "$1")" in
-               48eb) return 0;;
+               eb48) return 0;;
                *)
                        echo "Invalid image type"
                        return 1