1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-18 02:29:32 +00:00

trusted-firmware-a: Use new ti-secdev class to sign the images

Use the new ti-k3-secdev package to pull in the signing tools if they are
not provided by the environment. This allows us to use these tools
unconditionally. Remove the checks for the script and do the signing
for all K3 machines. The signature is automatically stripped from
the binaries on non-HS devices at boot time as needed so this change
is harmless for GP devices.

Signed-off-by: Andrew Davis <afd@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
This commit is contained in:
Andrew Davis
2023-02-15 13:33:42 -06:00
committed by Ryan Eatmon
parent ede16ed8de
commit 95e7682551

View File

@@ -9,39 +9,14 @@ TFA_SPD:k3 = "opteed"
SRC_URI:append:k3 = " file://rwx-segments-ti.patch"
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
# Use TI SECDEV for signing
inherit ti-secdev
EXTRA_OEMAKE:append:k3 = "${@ ' K3_USART=' + d.getVar('TFA_K3_USART') if d.getVar('TFA_K3_USART') else ''}"
EXTRA_OEMAKE:append:k3 = "${@ ' K3_PM_SYSTEM_SUSPEND=' + d.getVar('TFA_K3_SYSTEM_SUSPEND') if d.getVar('TFA_K3_SYSTEM_SUSPEND') else ''}"
# Signing procedure for K3 HS devices
tfa_sign_k3hs() {
export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG}
( cd ${BUILD_DIR}; \
mv bl31.bin bl31.bin.unsigned; \
if [ -f ${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh ]; then \
${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh bl31.bin.unsigned bl31.bin; \
else \
echo "Warning: TI_SECURE_DEV_PKG not set, TF-A not signed."; \
cp bl31.bin.unsigned bl31.bin; \
fi; \
)
}
do_compile:append:am65xx-hs-evm() {
tfa_sign_k3hs
}
do_compile:append:am64xx-evm() {
tfa_sign_k3hs
}
do_compile:append:j721e-hs-evm() {
tfa_sign_k3hs
}
do_compile:append:j7200-hs-evm() {
tfa_sign_k3hs
}
do_compile:append:j721s2-hs-evm() {
tfa_sign_k3hs
# Signing procedure for K3 devices
do_compile:append:k3() {
mv ${BUILD_DIR}/bl31.bin ${BUILD_DIR}/bl31.bin.unsigned
${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh ${BUILD_DIR}/bl31.bin.unsigned ${BUILD_DIR}/bl31.bin
}