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 =.
This commit is contained in:
parent
725019bebe
commit
757ab988e4
@ -10,7 +10,7 @@ file=$1
|
|||||||
blobs=`awk '/^APPEND/ {print $2} /^IMAGE/ || /^DATA/ {print $3}' $file`
|
blobs=`awk '/^APPEND/ {print $2} /^IMAGE/ || /^DATA/ {print $3}' $file`
|
||||||
for f in $blobs; do
|
for f in $blobs; do
|
||||||
tmp=$srctree/$f
|
tmp=$srctree/$f
|
||||||
if [ $f == "u-boot-dtb.bin" ]; then
|
if [ $f = "u-boot-dtb.bin" ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user