diff options
author | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2009-06-10 21:52:07 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2009-06-10 21:52:07 +0000 |
commit | b03a3a118a4f5cd6ea022d88a9069948b052d1f0 (patch) | |
tree | 4c123b3354945786ba435a9ca5a4bdfd6159d5fc /package/base-files | |
parent | 5080699ba187ec1ac42b16b7ad232c5623a6f30c (diff) | |
download | upstream-b03a3a118a4f5cd6ea022d88a9069948b052d1f0.tar.gz upstream-b03a3a118a4f5cd6ea022d88a9069948b052d1f0.tar.bz2 upstream-b03a3a118a4f5cd6ea022d88a9069948b052d1f0.zip |
[package] base-files: format hexdump output instead of using awk for sysupgrade
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16405 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-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() { |