ccmp2: disable signing and encryption for co-processor firmware
This commit disables the signing and encryption mechanism for the ConnectCore MP2 platform's co-processor firmware. Currently, this functionality is not yet supported in DEY, and enabling it causes build failures when TrustFence support is active. Disabling it ensures successful builds until full support is implemented. Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
parent
d57fd84182
commit
aabffdd138
|
|
@ -108,6 +108,10 @@ ENCRYPT_SUFFIX ?= "_Encrypted"
|
|||
|
||||
SIGN_ENABLE ?= "0"
|
||||
SIGN_SUFFIX ?= "_Signed"
|
||||
# Disable signature of coprocessor firmware
|
||||
SIGN_COPRO_ENABLE = "0"
|
||||
# Disable encryption of coprocessor firmware
|
||||
ENCRYPT_COPRO_ENABLE = "0"
|
||||
|
||||
# =========================================================================
|
||||
# Debug trace
|
||||
|
|
|
|||
Loading…
Reference in New Issue