From 510e735d56a1c855d62ece3c85f81776ebeaa2cd Mon Sep 17 00:00:00 2001 From: acinonyx Date: Wed, 10 Jun 2009 21:52:07 +0000 Subject: [PATCH] [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 --- package/base-files/files/lib/upgrade/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index 2750018e2..ef7ce57e7 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() { -- 2.35.1