mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-05 05:04:47 +02:00

Having one common recipe for optee-os, TF-A and DDR init blobs coming from rkbin is nice for maintenance but it doesn't allow for having e.g. TF-A come from another recipe and optee-os and DDR init from this one. Now that upstream TF-A has initial support for RK356x and RK3588, but there's still no open OP-TEE OS or DDR init, it'd be nice to allow users to have upstream TF-A. Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
28 lines
676 B
BlitzBasic
28 lines
676 B
BlitzBasic
DESCRIPTION = "Rockchip OP-TEE OS (BL32) blob"
|
|
|
|
require rockchip-rkbin.inc
|
|
|
|
PROVIDES += "optee-os"
|
|
|
|
do_deploy:rk3308() {
|
|
# Prebuilt OPTEE-OS
|
|
install -m 644 ${S}/bin/rk33/rk3308_bl32_v*.bin ${DEPLOYDIR}/tee-rk3308.bin
|
|
}
|
|
|
|
# NOTE: the following are not typos
|
|
# the rk3566 uses the same bl32 as the rk3568
|
|
do_deploy:rk3566() {
|
|
# Prebuilt OPTEE-OS
|
|
install -m 644 ${S}/bin/rk35/rk3568_bl32_v*.bin ${DEPLOYDIR}/tee-rk3566.bin
|
|
}
|
|
|
|
do_deploy:rk3568() {
|
|
# Prebuilt OPTEE-OS
|
|
install -m 644 ${S}/bin/rk35/rk3568_bl32_v*.bin ${DEPLOYDIR}/tee-rk3568.bin
|
|
}
|
|
|
|
do_deploy:rk3588s() {
|
|
# Prebuilt OPTEE-OS
|
|
install -m 644 ${S}/bin/rk35/rk3588_bl32_v*.bin ${DEPLOYDIR}/tee-rk3588.bin
|
|
}
|