1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-01-12 01:20:20 +00:00

optee: Add k3-falcon overrides

Since nothing in optee changes for the falcon flow, we do not want to
deploy the same files and trigger an error.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
This commit is contained in:
Ryan Eatmon
2025-12-17 16:28:07 -06:00
parent 934dab93d9
commit 7496133883
3 changed files with 17 additions and 2 deletions

View File

@@ -69,8 +69,16 @@ do_deploy:append:am57xx() {
}
do_deploy:append:k3() {
ln -sf optee/bl32.bin ${DEPLOYDIR}/
ln -sf optee/bl32.elf ${DEPLOYDIR}/
if [ -f ${DEPLOYDIR}/optee/bl32.bin ]; then
ln -sf optee/bl32.bin ${DEPLOYDIR}/
fi
if [ -f ${DEPLOYDIR}/optee/bl32.elf ]; then
ln -sf optee/bl32.elf ${DEPLOYDIR}/
fi
}
do_deploy:k3-falcon() {
echo "Deploy nothing for k3-falcon"
}
# Make the OS depend on embedded TAs

View File

@@ -0,0 +1,2 @@
do_deploy:k3-falcon() {
}

View File

@@ -2,3 +2,8 @@ OPTEE_TI_VERSION = ""
OPTEE_TI_VERSION:ti-soc = "${BPN}-ti-version.inc"
require ${OPTEE_TI_VERSION}
OPTEE_TI_OVERRIDES = ""
OPTEE_TI_OVERRIDES:ti-soc = "${BPN}-ti-overrides.inc"
require ${OPTEE_TI_OVERRIDES}