diff options
author | Simon Glass <sjg@chromium.org> | 2015-08-22 18:31:19 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-31 07:57:27 -0600 |
commit | a7d660bc4982fea59d14d30eb79e77499d1074ef (patch) | |
tree | 69f8566ec669c22ad180f505bac4636969ac4cd6 /common | |
parent | afc84dec1c2721269c8eaad13a938fa18360dbc7 (diff) | |
download | u-boot-imx-a7d660bc4982fea59d14d30eb79e77499d1074ef.zip u-boot-imx-a7d660bc4982fea59d14d30eb79e77499d1074ef.tar.gz u-boot-imx-a7d660bc4982fea59d14d30eb79e77499d1074ef.tar.bz2 |
tpm: Add Kconfig options for TPMs
Add new Kconfig options for TPMs in preparation for moving boards to use
Kconfig for TPM configuration.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Christophe Ricard<christophe-h.ricard@st.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 88dc016..bacc4e0 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -625,4 +625,16 @@ config CMD_REGULATOR endmenu +menu "Security commands" +config CMD_TPM + bool "Enable the 'tpm' command" + depends on TPM + help + This provides a means to talk to a TPM from the command line. A wide + range of commands if provided - see 'tpm help' for details. The + command requires a suitable TPM on your board and the correct driver + must be enabled. + +endmenu + endmenu |