1From 4870df3d70e94f9f0d6c06f610cea2d88cd6edb5 Mon Sep 17 00:00:00 2001
2From: Erik Larsson <erik.larsson@combitech.se>
3Date: Thu, 8 Mar 2018 19:04:37 +0100
4Subject: [PATCH] Add support for overriding BL32 and BL33 not only BL31
5
6Signed-off-by: Erik Larsson <karl.erik.larsson@gmail.com>
7Signed-off-by: Christopher Dahlberg <crille.dahlberg@gmail.com>
8Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
9---
10 iMX8M/mkimage_fit_atf.sh | 16 ++++++++--------
11 1 file changed, 8 insertions(+), 8 deletions(-)
12
13diff --git a/iMX8M/mkimage_fit_atf.sh b/iMX8M/mkimage_fit_atf.sh
14index 95749b1..c1aa902 100755
15--- a/iMX8M/mkimage_fit_atf.sh
16+++ b/iMX8M/mkimage_fit_atf.sh
17@@ -18,23 +18,23 @@ if [ ! -f $BL31 ]; then
18 	echo "ERROR: BL31 file $BL31 NOT found" >&2
19 	exit 0
20 else
21-	echo "bl31.bin size: " >&2
22-	ls -lct bl31.bin | awk '{print $5}' >&2
23+	echo "$BL31 size: " >&2
24+	ls -lct $BL31 | awk '{print $5}' >&2
25 fi
26
27-BL32="tee.bin"
28+[ -z "$BL32" ] && BL32="tee.bin"
29 LOADABLES="\"atf@1\""
30
31 if [ ! -f $BL32 ]; then
32 	BL32=/dev/null
33 else
34 	echo "Building with TEE support, make sure your bl31 is compiled with spd. If you do not want tee, please delete tee.bin" >&2
35-	echo "tee.bin size: " >&2
36-	ls -lct tee.bin | awk '{print $5}' >&2
37+	echo "$BL32 size: " >&2
38+	ls -lct $BL32 | awk '{print $5}' >&2
39 	LOADABLES="$LOADABLES, \"tee@1\""
40 fi
41
42-BL33="u-boot-nodtb.bin"
43+[ -z "$BL33" ] && BL33="u-boot-nodtb.bin"
44 DEK_BLOB="dek_blob_fit_dummy.bin"
45
46 if [ ! -f $DEK_BLOB ]; then
47@@ -49,8 +49,8 @@ if [ ! -f $BL33 ]; then
48 	exit 0
49 else
50
51-	echo "u-boot-nodtb.bin size: " >&2
52-	ls -lct u-boot-nodtb.bin | awk '{print $5}' >&2
53+	echo "$BL33 size: " >&2
54+	ls -lct $BL33 | awk '{print $5}' >&2
55 fi
56
57 for dtname in $*
58--
592.25.1
60
61