diff options
author | mario.six@gdsys.cc <mario.six@gdsys.cc> | 2017-03-20 10:28:30 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-03-26 13:22:58 -0600 |
commit | 3d1df0e363ff13b7aed17f9bb576d045f26c3f74 (patch) | |
tree | a0c33be9295408f3645f171a873e48c31ecebffb /drivers/tpm | |
parent | 1c08b210a8a7b20edc6620b62a5b9f886fff9eb7 (diff) | |
download | u-boot-3d1df0e363ff13b7aed17f9bb576d045f26c3f74.tar.gz |
lib: tpm: Add command to list resources
It is sometimes convenient to know how many and/or which resources are
currently loaded into a TPG, e.g. to test is a flush operation succeeded.
Hence, we add a command that lists the resources of a given type currently
loaded into the TPM.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/tpm')
-rw-r--r-- | drivers/tpm/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/tpm/Kconfig b/drivers/tpm/Kconfig index a54b6a988a..2a64bc49c3 100644 --- a/drivers/tpm/Kconfig +++ b/drivers/tpm/Kconfig @@ -96,4 +96,11 @@ config TPM_LOAD_KEY_BY_SHA1 Enable support to load keys into the TPM by identifying their parent via the public key's SHA1 hash. The functionality is available via the 'tpm' command as well. + +config TPM_LIST_RESOURCES + bool "Enable TPM resource listing support" + depends on TPM + help + Enable support to list specific resources (e.g. keys) within the TPM. + The functionality is available via the 'tpm' command as well. endmenu |