summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorAndrey Zhizhikin <andrey.z@gmail.com>2022-06-13 09:10:45 +0000
committerAndrey Zhizhikin <andrey.z@gmail.com>2022-06-14 18:55:57 +0000
commit1ec9540091c6d2cb7faf679f3b01916bfb0a0397 (patch)
tree6bcfbcdeb4373f421d8b2dc5dba4fdc2769df518 /classes
parentb61c4907b1926061cbf627ee1fd5dd8eb8e53d59 (diff)
downloadmeta-freescale-1ec9540091c6d2cb7faf679f3b01916bfb0a0397.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>
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