1config BR2_PACKAGE_TPM2_ABRMD 2 bool "tpm2-abrmd" 3 depends on BR2_USE_WCHAR # libglib2 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 5 depends on BR2_USE_MMU # libglib2 6 depends on !BR2_STATIC_LIBS # tpm2-tss 7 select BR2_PACKAGE_LIBGLIB2 8 select BR2_PACKAGE_TPM2_TSS 9 help 10 A system daemon implementing the TPM2 access broker (TAB) & 11 Resource Manager (RM) spec from the TCG. It should be started 12 during the OS boot process. Communication between the daemon 13 and clients using the TPM is done with a combination of DBus 14 and Unix pipes. 15 16 The package also provides a client library for interacting 17 with the daemon via TPM Command Transmission Interface (TCTI). 18 It is intended for use with the SAPI library (libtss2-sys) 19 like any other TCTI. 20 21 https://github.com/tpm2-software/tpm2-abrmd 22 23comment "tpm2-abrmd needs a toolchain w/ dynamic library, wchar, threads" 24 depends on BR2_USE_MMU 25 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 26 BR2_STATIC_LIBS 27