diff options
author | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2009-06-10 21:52:07 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2009-06-10 21:52:07 +0000 |
commit | d1f5700e78924bf5fc5d2cba684e7d8c4a55e78c (patch) | |
tree | 221d9f06900ff0c90898513db7110263ba3f82e5 /package | |
parent | c9eb4469e09e6b935e2c1643686eef5c7c0db8c4 (diff) | |
download | upstream-d1f5700e78924bf5fc5d2cba684e7d8c4a55e78c.tar.gz upstream-d1f5700e78924bf5fc5d2cba684e7d8c4a55e78c.tar.bz2 upstream-d1f5700e78924bf5fc5d2cba684e7d8c4a55e78c.zip |
base-files: format hexdump output instead of using awk for sysupgrade
SVN-Revision: 16405
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/files/lib/upgrade/common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index 2750018e2b..ef7ce57e7e 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -116,7 +116,7 @@ get_image() { } get_magic_word() { - get_image "$1" | dd bs=2 count=1 2>/dev/null | hexdump -C | awk '$2 { print $2 $3 }' + get_image "$1" | dd bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"' } refresh_mtd_partitions() { |