mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-17 06:48:07 +00:00
trusted-firmware-a: Do not sign TF-A image for K3
U-Boot with binman will do the signing as these images are packaged. Remove signing steps here. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
This commit is contained in:
committed by
Ryan Eatmon
parent
1cddc5bc96
commit
a42a40ad77
@@ -6,62 +6,5 @@ TFA_BUILD_TARGET:k3 = "all"
|
|||||||
TFA_INSTALL_TARGET:k3 = "bl31"
|
TFA_INSTALL_TARGET:k3 = "bl31"
|
||||||
TFA_SPD:k3 = "opteed"
|
TFA_SPD:k3 = "opteed"
|
||||||
|
|
||||||
# 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_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 ''}"
|
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() {
|
|
||||||
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
|
|
||||||
}
|
|
||||||
|
|
||||||
do_compile:append:am65xx-hs-evm() {
|
|
||||||
tfa_sign_k3hs
|
|
||||||
}
|
|
||||||
|
|
||||||
do_compile:append:am64xx-evm() {
|
|
||||||
tfa_sign_k3hs
|
|
||||||
}
|
|
||||||
|
|
||||||
do_compile:append:am62xx-evm() {
|
|
||||||
tfa_sign_k3hs
|
|
||||||
}
|
|
||||||
|
|
||||||
do_compile:append:am62xx-lp-evm() {
|
|
||||||
tfa_sign_k3hs
|
|
||||||
}
|
|
||||||
|
|
||||||
do_compile:append:am62axx-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
|
|
||||||
}
|
|
||||||
|
|
||||||
do_compile:append:j784s4-hs-evm() {
|
|
||||||
tfa_sign_k3hs
|
|
||||||
}
|
|
||||||
|
|
||||||
do_install:append:k3() {
|
|
||||||
if [ -f ${BUILD_DIR}/bl31.bin.unsigned ]; then
|
|
||||||
echo "Install bl31.bin.unsigned"
|
|
||||||
install -m 0644 ${BUILD_DIR}/bl31.bin.unsigned \
|
|
||||||
${D}/firmware/bl31.bin.unsigned
|
|
||||||
else
|
|
||||||
echo "Install bl31.bin.unsigned"
|
|
||||||
install -m 0644 ${BUILD_DIR}/bl31.bin \
|
|
||||||
${D}/firmware/bl31.bin.unsigned
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user