scripts/ubinize-image.sh: fix buildbot breakage
authorPetr Štetiar <ynezz@true.cz>
Sat, 27 Jul 2019 05:47:10 +0000 (07:47 +0200)
committerPetr Štetiar <ynezz@true.cz>
Thu, 31 Oct 2019 08:00:13 +0000 (09:00 +0100)
commitf024b4c83d122ee460251a3078e9dca2e8d599ad
tree6d517007f787e96b9c3d5b088a9a0737a4e08ed8
parent700f66ae950053afe03eedf5d1c37fc7c8c7d906
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>
(cherry picked from commit c6d41c320c795b0bb9a9350c7d4b1ce55f25769a)
scripts/ubinize-image.sh