summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2022-02-22 04:13:14 +0000
committerRyan Eatmon <reatmon@ti.com>2022-02-22 12:01:31 -0600
commitbea4fd2c401af05b866bd6af1c4e501d31b7b420 (patch)
tree829824cebece730e200aaf3197d7cb5d0ac6aedc
parent05b0fe7a5f811783ce9d0cdd4a971e1957084f25 (diff)
downloadmeta-ti-bea4fd2c401af05b866bd6af1c4e501d31b7b420.tar.gz
trusted-firmware-a: adjust ${BUILD_DIR} for meta-arm/master
After 8b2c97b585ed3f4163fa29f0d9120c7cd3c9e173, new platforms were merged with BUILD_DIR used as in early Dunfell days, correct those. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend b/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend
index 42e867a9..8fe7c08e 100644
--- a/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend
+++ b/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend
@@ -18,7 +18,7 @@ do_compile:append:am65xx-hs-evm() {
18 18
19do_compile:append:am64xx-hs-evm() { 19do_compile:append:am64xx-hs-evm() {
20 export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG} 20 export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG}
21 ( cd ${B}/${BUILD_DIR}/release/; \ 21 ( cd ${BUILD_DIR}; \
22 mv bl31.bin bl31.bin.unsigned; \ 22 mv bl31.bin bl31.bin.unsigned; \
23 ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh bl31.bin.unsigned bl31.bin; \ 23 ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh bl31.bin.unsigned bl31.bin; \
24 ) 24 )
@@ -34,7 +34,7 @@ do_compile:append:j7-hs-evm() {
34 34
35do_compile:append:j7200-hs-evm() { 35do_compile:append:j7200-hs-evm() {
36 export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG} 36 export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG}
37 ( cd ${B}/${BUILD_DIR}/release/; \ 37 ( cd ${BUILD_DIR}; \
38 mv bl31.bin bl31.bin.unsigned; \ 38 mv bl31.bin bl31.bin.unsigned; \
39 ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh bl31.bin.unsigned bl31.bin; \ 39 ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh bl31.bin.unsigned bl31.bin; \
40 ) 40 )