From: Siva Durga Prasad Paladugu Date: Fri, 17 Feb 2017 10:45:59 +0000 (+0530) Subject: Kconfig: Move configs AES and CMD_AES to Kconfig X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb0d98e807d09b84bb78265d9ef8dfa940e577fb;p=thirdparty%2Fu-boot.git Kconfig: Move configs AES and CMD_AES to Kconfig Move the configs AED and CMD_AES to respective Kconfigs. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- diff --git a/cmd/Kconfig b/cmd/Kconfig index 3dfb2ea9044..baffcf2ff99 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -576,6 +576,12 @@ endmenu menu "Misc commands" +config CMD_AES + bool "aes" + help + Enable comamnd support for encrypting and + decrypting of images. + config CMD_AMBAPP bool "ambapp" depends on LEON3 diff --git a/lib/Kconfig b/lib/Kconfig index b16062fbe33..a3ae262e6db 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -67,6 +67,15 @@ config TPM for the low-level TPM interface, but only one TPM is supported at a time by the TPM library. +menu "Encryption Support" + +config AES + bool "Enable encryption and decryption support" + help + This config enables support of aes for encryption and + decryption of images. +endmenu + menu "Hashing Support" config SHA1