diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2025-06-23 14:21:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-23 14:21:43 -0300 |
commit | 82f87af9e0ace771aed07e1b2ee18248c698c9ee (patch) | |
tree | c97a11fbf70a7ca9c06312a9804df54618c56447 | |
parent | f3969e276d4c4234c5bca0202e1fad20c24ecfa9 (diff) | |
parent | 6304f94df2297f8c39a9ed1fa3b24dc53b6176d6 (diff) | |
download | meta-freescale-walnascar.tar.gz |
Merge pull request #2307 from ekronborg/boot-containerwalnascar
imx-boot-container: copy ${OPTEE_BOOT_IMAGE} to ${B}
-rw-r--r-- | classes/imx-boot-container.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/classes/imx-boot-container.bbclass b/classes/imx-boot-container.bbclass index b0d3dc1f..c3a13a25 100644 --- a/classes/imx-boot-container.bbclass +++ b/classes/imx-boot-container.bbclass | |||
@@ -63,6 +63,9 @@ do_resolve_and_populate_binaries() { | |||
63 | else | 63 | else |
64 | bberror "ATF binary is undefined, result binary would be unusable!" | 64 | bberror "ATF binary is undefined, result binary would be unusable!" |
65 | fi | 65 | fi |
66 | if [ "${@bb.utils.contains('MACHINE_FEATURES', 'optee', '1' , '0' , d)}" = "1" ] ; then | ||
67 | cp ${DEPLOY_DIR_IMAGE}/${OPTEE_BOOT_IMAGE} ${B}/${config}/ | ||
68 | fi | ||
66 | fi | 69 | fi |
67 | done | 70 | done |
68 | unset j | 71 | unset j |