[package] base-files: format hexdump output instead of using awk for sysupgrade
[openwrt.git] / package / base-files / files / lib / upgrade / common.sh
index 2750018..ef7ce57 100644 (file)
@@ -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() {
This page took 0.027884 seconds and 4 git commands to generate.