From: Martin Husemann Date: Fri, 9 Nov 2018 13:30:14 +0000 (+0100) Subject: tools: improve portability of imx_cntr_image.sh X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=757ab988e44892dee6df4cc2a2a36f74eb6d73a6;p=u-boot.git tools: improve portability of imx_cntr_image.sh Replace non-portable operator == with = The operator == in sh(1) / test(1) is non-POSIX and only implemented by some shells (like bash). It is equivalent to the standard defined operator =. --- diff --git a/tools/imx_cntr_image.sh b/tools/imx_cntr_image.sh index 4c629e8694..972b95ccbe 100755 --- a/tools/imx_cntr_image.sh +++ b/tools/imx_cntr_image.sh @@ -10,7 +10,7 @@ file=$1 blobs=`awk '/^APPEND/ {print $2} /^IMAGE/ || /^DATA/ {print $3}' $file` for f in $blobs; do tmp=$srctree/$f - if [ $f == "u-boot-dtb.bin" ]; then + if [ $f = "u-boot-dtb.bin" ]; then continue fi