summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2022-04-27 17:35:46 -0300
committerGitHub <noreply@github.com>2022-04-27 17:35:46 -0300
commit164b7360ff1f29dcdd66d8246d4562bac3f1b87f (patch)
tree7c7c73e7497cff3ccd28919b0c76ee4cd5763ec2
parent96a0904cd0562378411c373f8a976c749772202b (diff)
parent6ae05639cb33f0e724fa8bc553bf73192217ab2c (diff)
downloadmeta-freescale-164b7360ff1f29dcdd66d8246d4562bac3f1b87f.tar.gz
Merge pull request #1061 from tprrt/tprrt/imx-mkimage-fix-typo
imx-imkimage: fix a typo in a patch for print_fit_hab.sh
-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+