diff options
author | Thomas Perrot <thomas.perrot@bootlin.com> | 2022-04-27 22:17:48 +0200 |
---|---|---|
committer | Thomas Perrot <thomas.perrot@bootlin.com> | 2022-04-27 22:24:41 +0200 |
commit | 6ae05639cb33f0e724fa8bc553bf73192217ab2c (patch) | |
tree | 7c7c73e7497cff3ccd28919b0c76ee4cd5763ec2 /recipes-bsp/imx-mkimage/files | |
parent | 96a0904cd0562378411c373f8a976c749772202b (diff) | |
download | meta-freescale-6ae05639cb33f0e724fa8bc553bf73192217ab2c.tar.gz |
imx-imkimage: fix a typo in a patch for print_fit_hab.sh
When the variable BL31 is empty, BL33 was initialized instead of BL31.
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
Diffstat (limited to 'recipes-bsp/imx-mkimage/files')
-rw-r--r-- | recipes-bsp/imx-mkimage/files/0001-Add-support-for-overriding-BL31-BL32-and-BL33.patch | 6 |
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 @@ | |||
1 | From ff3204addcf737b7285a0c44eb0a34c9ca82be4e Mon Sep 17 00:00:00 2001 | 1 | From 8fc8fc3dfce7533b9c965185277d34e27055cc8f Mon Sep 17 00:00:00 2001 |
2 | From: Thomas Perrot <thomas.perrot@bootlin.com> | 2 | From: Thomas Perrot <thomas.perrot@bootlin.com> |
3 | Date: Tue, 26 Apr 2022 15:10:04 +0200 | 3 | Date: Tue, 26 Apr 2022 15:10:04 +0200 |
4 | Subject: [PATCH] Add support for overriding BL31, BL32 and BL33 | 4 | Subject: [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 | ||
13 | diff --git a/iMX8M/print_fit_hab.sh b/iMX8M/print_fit_hab.sh | 13 | diff --git a/iMX8M/print_fit_hab.sh b/iMX8M/print_fit_hab.sh |
14 | index b915115d1ecc..9e025b78c04d 100755 | 14 | index 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 | + |