package/wolftpm: add config option to enable debug output

Signed-off-by: Dimitar Tomov <dimi@tpm.dev>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Dimitar Tomov 2022-10-12 10:54:23 +03:00 committed by Thomas Petazzoni
parent 09779d0f69
commit fada6de8b0
2 changed files with 11 additions and 0 deletions

View File

@ -35,6 +35,11 @@ config BR2_PACKAGE_WOLFTPM_NUVOTON
Enable support of TPM 2.0 extra functionality offered by the
Nuvoton NPCT750 chip.
config BR2_PACKAGE_WOLFTPM_DEBUG
bool "Debug output"
help
Enable debug messages in wolfTPM.
comment "wolfCrypt hooks need a toolchain w/ threads, dynamic library"
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS

View File

@ -47,4 +47,10 @@ else
WOLFTPM_CONF_OPTS += --disable-nuvoton
endif
ifeq ($(BR2_PACKAGE_WOLFTPM_DEBUG),y)
WOLFTPM_CONF_OPTS += --enable-debug
else
WOLFTPM_CONF_OPTS += --disable-debug
endif
$(eval $(autotools-package))