diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 03:25:16 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-22 09:33:55 -0400 |
commit | ea7971f705e5b00fad41bc15941b5415fec01ee6 (patch) | |
tree | f2d58a6d128a434ca2816200d16567b20215897f /board | |
parent | 230ecd7150e83fc5a669bc1d986a79cd036de90a (diff) |
Convert CONFIG_CMD_ESBC_VALIDATE to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_ESBC_VALIDATE
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/common/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/freescale/common/Kconfig b/board/freescale/common/Kconfig index 540885786b..b4bf90d4f5 100644 --- a/board/freescale/common/Kconfig +++ b/board/freescale/common/Kconfig @@ -7,3 +7,12 @@ config CHAIN_OF_TRUST select SHA_PROG_HW_ACCEL bool default y + +config CMD_ESBC_VALIDATE + bool "Enable the 'esbc_validate' and 'esbc_halt' commands" + default y if CHAIN_OF_TRUST + help + This option enables two commands used for secure booting: + + esbc_validate - validate signature using RSA verification + esbc_halt - put the core in spin loop (Secure Boot Only) |