All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] tools: imx8m_image: Fix 'unexpected operator' error
@ 2019-04-03 14:37 Carlo Caione
  2019-04-03 14:56 ` Anatolij Gustschin
  0 siblings, 1 reply; 6+ messages in thread
From: Carlo Caione @ 2019-04-03 14:37 UTC (permalink / raw)
  To: u-boot

When sh is an alias for dash the script is failing with (for several
files):

./tools/imx8m_image.sh: 15: [: signed_hdmi_imx8m.bin: unexpected operator

This is caused by the 'a == b' bashism that should be 'a = b'.

Signed-off-by: Carlo Caione <ccaione@baylibre.com>
---
 tools/imx8m_image.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/imx8m_image.sh b/tools/imx8m_image.sh
index 6346fb64d8..ec0881a128 100755
--- a/tools/imx8m_image.sh
+++ b/tools/imx8m_image.sh
@@ -12,7 +12,7 @@ blobs=`awk '/^SIGNED_HDMI/ {print $2} /^LOADER/ {print $2} /^SECOND_LOADER/ {pri
 for f in $blobs; do
 	tmp=$srctree/$f
 
-	if [ $f == "spl/u-boot-spl-ddr.bin" ] || [ $f == "u-boot.itb" ]; then
+	if [ $f = "spl/u-boot-spl-ddr.bin" ] || [ $f = "u-boot.itb" ]; then
 		continue
 	fi
 
@@ -28,7 +28,7 @@ for f in $blobs; do
 	sed -in "s;$f;$tmp;" $file
 done
 
-if [ $post_process == 1 ]; then
+if [ $post_process = 1 ]; then
 	if [ -f $srctree/lpddr4_pmu_train_1d_imem.bin ]; then
 		objcopy -I binary -O binary --pad-to 0x8000 --gap-fill=0x0 $srctree/lpddr4_pmu_train_1d_imem.bin lpddr4_pmu_train_1d_imem_pad.bin
 		objcopy -I binary -O binary --pad-to 0x4000 --gap-fill=0x0 $srctree/lpddr4_pmu_train_1d_dmem.bin lpddr4_pmu_train_1d_dmem_pad.bin
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-04-04  9:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-03 14:37 [U-Boot] [PATCH] tools: imx8m_image: Fix 'unexpected operator' error Carlo Caione
2019-04-03 14:56 ` Anatolij Gustschin
2019-04-03 15:01   ` Carlo Caione
2019-04-03 15:07   ` Stefano Babic
2019-04-04  8:29     ` Anatolij Gustschin
2019-04-04  9:00       ` Stefano Babic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.