ccmp25-dvk: add support to include Trustfence artifacts in ZIP installer
This commit conditionally selects the appropriate boot artifacts to include in the ZIP installer, depending on whether Trustfence is enabled or not. https://onedigi.atlassian.net/browse/DEL-9442 Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
parent
c59a5fdfe9
commit
ff97a34b64
|
|
@ -144,9 +144,11 @@ ST_USERFS = "0"
|
||||||
|
|
||||||
# Boot artifacts to be copied from the deploy dir to the installer ZIP
|
# Boot artifacts to be copied from the deploy dir to the installer ZIP
|
||||||
BOOTABLE_ARTIFACTS = " \
|
BOOTABLE_ARTIFACTS = " \
|
||||||
tf-a-ccmp25-dvk-optee-emmc.stm32 \
|
${@oe.utils.ifelse(d.getVar('TRUSTFENCE_SIGN') == '1', 'tf-a-ccmp25-dvk-optee-emmc${SIGN_SUFFIX}.stm32', \
|
||||||
|
'tf-a-ccmp25-dvk-optee-emmc.stm32')} \
|
||||||
metadata-ccmp25-dvk.bin \
|
metadata-ccmp25-dvk.bin \
|
||||||
fip-ccmp25-dvk-optee-emmc.bin \
|
${@oe.utils.ifelse(d.getVar('TRUSTFENCE_SIGN') == '1', 'fip-ccmp25-dvk-optee-emmc${SIGN_SUFFIX}.bin', \
|
||||||
|
'fip-ccmp25-dvk-optee-emmc.bin')} \
|
||||||
"
|
"
|
||||||
|
|
||||||
# Per-machine DISTRO_FEATURES customization
|
# Per-machine DISTRO_FEATURES customization
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue