Config.in 991 B

1234567891011121314151617181920212223242526
  1. config 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. The package also provides a client library for interacting
  16. with the daemon via TPM Command Transmission Interface (TCTI).
  17. It is intended for use with the SAPI library (libtss2-sys)
  18. like any other TCTI.
  19. https://github.com/tpm2-software/tpm2-abrmd
  20. comment "tpm2-abrmd needs a toolchain w/ dynamic library, wchar, threads"
  21. depends on BR2_USE_MMU
  22. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  23. BR2_STATIC_LIBS