diff options
author | Denys Dmytriyenko <denys@ti.com> | 2020-10-22 03:55:07 +0000 |
---|---|---|
committer | Dan Murphy <dmurphy@ti.com> | 2020-10-22 07:25:55 -0500 |
commit | 8b2c97b585ed3f4163fa29f0d9120c7cd3c9e173 (patch) | |
tree | 01f728fdce55285f0d965628030eccd6f48792b8 /recipes-bsp | |
parent | 5d0855593915c6bbd2261e2047d389f894afd5cd (diff) | |
download | meta-ti-8b2c97b585ed3f4163fa29f0d9120c7cd3c9e173.tar.gz meta-ti-8b2c97b585ed3f4163fa29f0d9120c7cd3c9e173.tar.bz2 meta-ti-8b2c97b585ed3f4163fa29f0d9120c7cd3c9e173.zip |
trusted-firmware-a: adjust ${BUILD_DIR} for meta-arm/master
As meta-arm/master now sets ${BUILD_DIR} to also include ${B} and release/debug.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Diffstat (limited to 'recipes-bsp')
-rw-r--r-- | recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend | 4 |
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 2dc715c81..c3e3c7424 100644 --- a/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend +++ b/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend @@ -8,7 +8,7 @@ TFA_SPD_k3 = "opteed" do_compile_append_am65xx-hs-evm() { export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG} - ( cd ${B}/${BUILD_DIR}/release/; \ + ( cd ${BUILD_DIR}; \ mv bl31.bin bl31.bin.unsigned; \ ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh bl31.bin.unsigned bl31.bin; \ ) @@ -16,7 +16,7 @@ do_compile_append_am65xx-hs-evm() { do_compile_append_j7-hs-evm() { export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG} - ( cd ${B}/${BUILD_DIR}/release/; \ + ( cd ${BUILD_DIR}; \ mv bl31.bin bl31.bin.unsigned; \ ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh bl31.bin.unsigned bl31.bin; \ ) |