xref: /OK3568_Linux_fs/buildroot/package/tpm2-tools/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_TPM2_TOOLS
2*4882a593Smuzhiyun	bool "tpm2-tools"
3*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS # tpm2-tss
4*4882a593Smuzhiyun	depends on BR2_USE_WCHAR
5*4882a593Smuzhiyun	# c16rtomb() not implemented in uClibc
6*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL
7*4882a593Smuzhiyun	select BR2_PACKAGE_LIBCURL
8*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
9*4882a593Smuzhiyun	select BR2_PACKAGE_TPM2_TSS
10*4882a593Smuzhiyun	select BR2_PACKAGE_UTIL_LINUX
11*4882a593Smuzhiyun	select BR2_PACKAGE_UTIL_LINUX_LIBUUID
12*4882a593Smuzhiyun	help
13*4882a593Smuzhiyun	  TPM (Trusted Platform Module) 2.0 CLI tools based on system
14*4882a593Smuzhiyun	  API of TPM2-TSS. These tools can be used to manage keys,
15*4882a593Smuzhiyun	  perform encryption/decryption/signing/etc crypto operations,
16*4882a593Smuzhiyun	  and manage non-volatile storage through a TPM2.0 HW
17*4882a593Smuzhiyun	  implementation.
18*4882a593Smuzhiyun
19*4882a593Smuzhiyun	  Notice: An in-kernel resource manager is provided by the
20*4882a593Smuzhiyun	  Linux kernel since 4.12. Depending on use cases and kernel
21*4882a593Smuzhiyun	  version, the user space resource manager provided by
22*4882a593Smuzhiyun	  tpm2-abrmd may be needed.
23*4882a593Smuzhiyun
24*4882a593Smuzhiyun	  https://github.com/tpm2-software/tpm2-tools
25*4882a593Smuzhiyun
26*4882a593Smuzhiyuncomment "tpm2-tools needs a glibc or musl toolchain w/ dynamic library, wchar"
27*4882a593Smuzhiyun	depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || \
28*4882a593Smuzhiyun		!(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
29