summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-bsp/imx-mkimage/files/0001-Add-support-for-overriding-BL31-BL32-and-BL33.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-bsp/imx-mkimage/files/0001-Add-support-for-overriding-BL31-BL32-and-BL33.patch b/recipes-bsp/imx-mkimage/files/0001-Add-support-for-overriding-BL31-BL32-and-BL33.patch
index eadba937..4e0d954a 100644
--- a/recipes-bsp/imx-mkimage/files/0001-Add-support-for-overriding-BL31-BL32-and-BL33.patch
+++ b/recipes-bsp/imx-mkimage/files/0001-Add-support-for-overriding-BL31-BL32-and-BL33.patch
@@ -1,4 +1,4 @@
1From ff3204addcf737b7285a0c44eb0a34c9ca82be4e Mon Sep 17 00:00:00 2001 1From 8fc8fc3dfce7533b9c965185277d34e27055cc8f Mon Sep 17 00:00:00 2001
2From: Thomas Perrot <thomas.perrot@bootlin.com> 2From: Thomas Perrot <thomas.perrot@bootlin.com>
3Date: Tue, 26 Apr 2022 15:10:04 +0200 3Date: Tue, 26 Apr 2022 15:10:04 +0200
4Subject: [PATCH] Add support for overriding BL31, BL32 and BL33 4Subject: [PATCH] Add support for overriding BL31, BL32 and BL33
@@ -11,7 +11,7 @@ Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
11 1 file changed, 9 insertions(+), 5 deletions(-) 11 1 file changed, 9 insertions(+), 5 deletions(-)
12 12
13diff --git a/iMX8M/print_fit_hab.sh b/iMX8M/print_fit_hab.sh 13diff --git a/iMX8M/print_fit_hab.sh b/iMX8M/print_fit_hab.sh
14index b915115d1ecc..9e025b78c04d 100755 14index b915115d1ecc..dbc28f2d9af5 100755
15--- a/iMX8M/print_fit_hab.sh 15--- a/iMX8M/print_fit_hab.sh
16+++ b/iMX8M/print_fit_hab.sh 16+++ b/iMX8M/print_fit_hab.sh
17@@ -1,12 +1,16 @@ 17@@ -1,12 +1,16 @@
@@ -24,7 +24,7 @@ index b915115d1ecc..9e025b78c04d 100755
24 # keep backward compatibility 24 # keep backward compatibility
25 [ -z "$TEE_LOAD_ADDR" ] && TEE_LOAD_ADDR="0xfe000000" 25 [ -z "$TEE_LOAD_ADDR" ] && TEE_LOAD_ADDR="0xfe000000"
26 26
27+[ -z "$BL31" ] && BL33="bl31.bin" 27+[ -z "$BL31" ] && BL31="bl31.bin"
28+ 28+
29+[ -z "$BL32" ] && BL32="tee.bin" 29+[ -z "$BL32" ] && BL32="tee.bin"
30+ 30+