mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-18 21:28:02 +00:00
scripts/ubinize-image.sh: fix buildbot breakage
New Docker based buildslaves install just bare minimum of packages, thus not having bsdmainutils package installed which provides `hexdump` utility, leading to the following build breakage on buildbots: ubinize-image.sh: 12: /builder/scripts/ubinize-image.sh: hexdump: not found So this patch simply replaces `hexdump` with `od` utility provided by coreutils package, which should be likely available. Co-authored-by: Yousong Zhou <yszhou4tech@gmail.com> Signed-off-by: Petr Štetiar <ynezz@true.cz>
This commit is contained in:
parent
c3c3cd5e4a
commit
c6d41c320c
@ -9,7 +9,7 @@ outfile=""
|
|||||||
err=""
|
err=""
|
||||||
|
|
||||||
get_magic_word() {
|
get_magic_word() {
|
||||||
dd if=$1 bs=2 count=1 2>/dev/null | hexdump -v -n 2 -e '1/1 "%02x"'
|
dd if=$1 bs=2 count=1 2>/dev/null | od -A n -N 2 -t x1 | tr -d ' '
|
||||||
}
|
}
|
||||||
|
|
||||||
is_ubifs() {
|
is_ubifs() {
|
||||||
|
Loading…
Reference in New Issue
Block a user