diff options
author | Matthias Schiffer <matthias.schiffer@ew.tq-group.com> | 2022-04-14 10:09:02 +0200 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2022-05-04 13:18:55 -0500 |
commit | db50af1677a8b3b09ef55745c711f34dc3297fdb (patch) | |
tree | 47febe8bece19dab8433f5fb5fe63f4751520b10 | |
parent | 721ce6ef5dcad00c736e655d24780f07f8f81aae (diff) | |
download | meta-ti-db50af1677a8b3b09ef55745c711f34dc3297fdb.tar.gz |
optee-os: fix build with OPTEEPAGER=y
meta-arm commit e03b824d7824 ("arm/optee-os: cleanup recipe") changed the
recipe's do_compile(), which broke the build of the am57xx-hs-evm and
dra7xx-hs-evm machines. Adjust the .bbappend accordingly.
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-bsp/recipes-security/optee/optee-os_%.bbappend | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-ti-bsp/recipes-security/optee/optee-os_%.bbappend b/meta-ti-bsp/recipes-security/optee/optee-os_%.bbappend index f9660bfe..5af57e16 100644 --- a/meta-ti-bsp/recipes-security/optee/optee-os_%.bbappend +++ b/meta-ti-bsp/recipes-security/optee/optee-os_%.bbappend | |||
@@ -20,8 +20,8 @@ optee_sign_legacyhs() { | |||
20 | ) | 20 | ) |
21 | 21 | ||
22 | if [ "${OPTEEPAGER}" = "y" ]; then | 22 | if [ "${OPTEEPAGER}" = "y" ]; then |
23 | oe_runmake clean | 23 | oe_runmake -C ${S} clean |
24 | oe_runmake all CFG_TEE_TA_LOG_LEVEL=0 CFG_WITH_PAGER=y | 24 | oe_runmake -C ${S} all CFG_TEE_TA_LOG_LEVEL=0 CFG_WITH_PAGER=y |
25 | ( cd ${B}/core/; \ | 25 | ( cd ${B}/core/; \ |
26 | ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh tee.bin tee.bin.signed; \ | 26 | ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh tee.bin tee.bin.signed; \ |
27 | normfl=`echo ${OPTEEFLAVOR} | tr "_" "-"` | 27 | normfl=`echo ${OPTEEFLAVOR} | tr "_" "-"` |