From ef28030129a04b1d70dbca3f2236fe7b1c67b4ed Mon Sep 17 00:00:00 2001 From: Erik Larsson Date: Thu, 8 Mar 2018 19:04:37 +0100 Subject: [PATCH] Add support for overriding BL32 and BL33 not only BL31 Upstream-Status: Pending Signed-off-by: Erik Larsson Signed-off-by: Christopher Dahlberg Signed-off-by: Marcus Folkesson Signed-off-by: Thomas Perrot --- iMX8M/mkimage_fit_atf.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/iMX8M/mkimage_fit_atf.sh b/iMX8M/mkimage_fit_atf.sh index 10903ea3bbf5..341a4b3da1ef 100755 --- a/iMX8M/mkimage_fit_atf.sh +++ b/iMX8M/mkimage_fit_atf.sh @@ -6,6 +6,7 @@ # usage: $0 [ [&2 exit 0 else - echo "bl31.bin size: " >&2 - ls -lct bl31.bin | awk '{print $5}' >&2 + echo "$BL31 size: " >&2 + ls -lct $BL31 | awk '{print $5}' >&2 fi -BL32="tee.bin" +[ -z "$BL32" ] && BL32="tee.bin" LOADABLES="\"atf-1\"" if [ ! -f $BL32 ]; then BL32=/dev/null else - echo "Building with TEE support, make sure your bl31 is compiled with spd. If you do not want tee, please delete tee.bin" >&2 - echo "tee.bin size: " >&2 - ls -lct tee.bin | awk '{print $5}' >&2 + echo "Building with TEE support, make sure $BL31 is compiled with spd. If you do not want tee, please delete $BL32" >&2 + echo "$BL32 size: " >&2 + ls -lct $BL32 | awk '{print $5}' >&2 LOADABLES="$LOADABLES, \"tee-1\"" fi -BL33="u-boot-nodtb.bin" +[ -z "$BL33" ] && BL33="u-boot-nodtb.bin" DEK_BLOB="dek_blob_fit_dummy.bin" if [ ! -f $DEK_BLOB ]; then @@ -49,8 +50,8 @@ if [ ! -f $BL33 ]; then exit 0 else - echo "u-boot-nodtb.bin size: " >&2 - ls -lct u-boot-nodtb.bin | awk '{print $5}' >&2 + echo "$BL33 size: " >&2 + ls -lct $BL33 | awk '{print $5}' >&2 fi for dtname in $* -- 2.35.1