summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorAndrey Zhizhikin <andrey.z@gmail.com>2022-06-13 09:10:45 +0000
committerOtavio Salvador <otavio@ossystems.com.br>2022-06-16 16:53:46 -0300
commit546a884afd29b5e058ddf0f1a6964246db8ffb70 (patch)
tree694b256e8e1b9d67ffb10ea71b58cfad3ecf7fc8 /classes
parent9c62ef822225c253a53bfce291f8f19f96cae658 (diff)
downloadmeta-freescale-546a884afd29b5e058ddf0f1a6964246db8ffb70.tar.gz
recipes-bsp: drop custom deploy location for TF-A binary
Upstream TF-A and downstream TF-A fork uses different deployment locations for results binaries, which leads to failures during image build when switching between upstream and downstream versions. Drop the custom TF-A deployment location, which is only specific to NXP downstream deployment, allowing the TF-A binaries from upstream and downstream to be picked up from the same location, namely - image deployment folder. Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> (cherry picked from commit 1ec9540091c6d2cb7faf679f3b01916bfb0a0397)
Diffstat (limited to 'classes')
-rw-r--r--classes/imx-boot-container.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/imx-boot-container.bbclass b/classes/imx-boot-container.bbclass
index 7765266d..711bbd9e 100644
--- a/classes/imx-boot-container.bbclass
+++ b/classes/imx-boot-container.bbclass
@@ -47,7 +47,7 @@ do_resolve_and_populate_binaries() {
47 cp ${DEPLOY_DIR_IMAGE}/${ddr_firmware} ${B}/${config}/ 47 cp ${DEPLOY_DIR_IMAGE}/${ddr_firmware} ${B}/${config}/
48 done 48 done
49 if [ -n "${ATF_MACHINE_NAME}" ]; then 49 if [ -n "${ATF_MACHINE_NAME}" ]; then
50 cp ${DEPLOY_DIR_IMAGE}/${BOOT_TOOLS}/${ATF_MACHINE_NAME} ${B}/${config}/bl31.bin 50 cp ${DEPLOY_DIR_IMAGE}/${ATF_MACHINE_NAME} ${B}/${config}/bl31.bin
51 else 51 else
52 bberror "ATF binary is undefined, result binary would be unusable!" 52 bberror "ATF binary is undefined, result binary would be unusable!"
53 fi 53 fi