optee-os-stm32: reduce verbosity of SCP firmware
The SCP firmware introduces too much verbosity (with timestamp included) in the middle of the boot log between the TF-A and U-Boot. Reduce the log and remove compiler flags for errors on unused variables (banner strings). This removes the following messages from SCP firmware: [ 0.000000] SCP-firmware v2.12.0-dev [ 0.000000] [ 0.000000] [FWK] Module initialization complete! Signed-off-by: Hector Palacios <hector.palacios@digi.com> Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
33ca8bc914
commit
1624ec2bc2
|
|
@ -50,7 +50,7 @@ EXTRA_OEMAKE += "LDFLAGS="
|
|||
# Set external-dt support
|
||||
EXTRA_OEMAKE += "${@bb.utils.contains('EXTERNAL_DT_ENABLED', '1', 'CFG_EXT_DTS=${STAGING_EXTDT_DIR}/optee', '', d)}"
|
||||
# Set scp-firmware support
|
||||
EXTRA_OEMAKE += "CFG_SCP_FIRMWARE=${STAGING_SCPFW_DIR}"
|
||||
EXTRA_OEMAKE += "CFG_SCP_FIRMWARE=${STAGING_SCPFW_DIR} CFG_SCPFW_LOG_LEVEL=5 CFG_WERROR=n"
|
||||
|
||||
# debug and trace
|
||||
EXTRA_OEMAKE += "${@bb.utils.contains('ST_OPTEE_DEBUG_TRACE', '1', 'CFG_TEE_CORE_LOG_LEVEL=${ST_OPTEE_DEBUG_LOG_LEVEL} CFG_TEE_CORE_DEBUG=${ST_OPTEE_CORE_DEBUG}', '', d)}"
|
||||
|
|
|
|||
Loading…
Reference in New Issue