Skip to content
Snippets Groups Projects
Commit 5cfd2180 authored by Ji Luo's avatar Ji Luo
Browse files

MA-21144 imx8m: fix pad_image script


the image need to be padded may don't actually exist as
we support various kinds of build targets. For example
we support both build targets with and without the tee.bin
and we should exit without errors in such case.

Signed-off-by: default avatarJi Luo <ji.luo@nxp.com>
parent 1752a0aa
Branches lf-6.1.22_2.0.0
No related merge requests found
......@@ -9,7 +9,7 @@ _total_size=0
while [[ $# -gt 0 ]]; do
if [[ ! -f $1 ]]; then
echo "ERROR: $0: Could not find file $1. Exiting."
exit -1
exit 0
fi
_file=$1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment