From 4a60dce67c738967206c83c8ce252b076daaf1c6 Mon Sep 17 00:00:00 2001 From: Joakim Andersson Date: Fri, 12 Nov 2021 12:05:47 +0100 Subject: [PATCH] modules: tfm: Update crypto modules prompt strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update crypto modules prompt strings to follow the Kconfig guidelines. "For a Kconfig symbol that enables a driver/subsystem FOO, consider having just “Foo” as the prompt, instead of “Enable Foo support” or the like." Signed-off-by: Joakim Andersson --- .../Kconfig.tfm.crypto_modules | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules b/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules index f2c1a73931e..1b4f7e1b17a 100644 --- a/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules +++ b/modules/trusted-firmware-m/Kconfig.tfm.crypto_modules @@ -8,14 +8,14 @@ if BUILD_WITH_TFM if TFM_PARTITION_CRYPTO config TFM_CRYPTO_RNG_MODULE_ENABLED - bool "Enable random number generator crypto module" + bool "Random number generator crypto module" default y help Enables the random number generator module within the crypto partition. Unset this option if 'psa_generate_random' is not used. config TFM_CRYPTO_KEY_MODULE_ENABLED - bool "Enable KEY crypto module" + bool "KEY crypto module" default y help Enables the KEY crypto module within the crypto partition. @@ -23,7 +23,7 @@ config TFM_CRYPTO_KEY_MODULE_ENABLED is not used. config TFM_CRYPTO_AEAD_MODULE_ENABLED - bool "Enable AEAD crypto module" + bool "AEAD crypto module" default y help Enables the AEAD crypto module within the crypto partition. @@ -31,7 +31,7 @@ config TFM_CRYPTO_AEAD_MODULE_ENABLED is not used. config TFM_CRYPTO_MAC_MODULE_ENABLED - bool "Enable MAC crypto module" + bool "MAC crypto module" default y help Enables the MAC crypto module within the crypto partition. @@ -39,7 +39,7 @@ config TFM_CRYPTO_MAC_MODULE_ENABLED is not used. config TFM_CRYPTO_HASH_MODULE_ENABLED - bool "Enable HASH crypto module" + bool "HASH crypto module" default y help Enables the HASH crypto module within the crypto partition. @@ -47,7 +47,7 @@ config TFM_CRYPTO_HASH_MODULE_ENABLED is not used. config TFM_CRYPTO_CIPHER_MODULE_ENABLED - bool "Enable CIPHER crypto module" + bool "CIPHER crypto module" default y help Enables the CIPHER crypto module within the crypto partition. @@ -55,7 +55,7 @@ config TFM_CRYPTO_CIPHER_MODULE_ENABLED is not used. config TFM_CRYPTO_ASYM_ENCRYPT_MODULE_ENABLED - bool "Enable ASYM ENCRYPT crypto module" + bool "ASYM ENCRYPT crypto module" default y help Enables the ASYM ENCRYPT crypto module within the crypto partition. @@ -63,7 +63,7 @@ config TFM_CRYPTO_ASYM_ENCRYPT_MODULE_ENABLED is not used. config TFM_CRYPTO_ASYM_SIGN_MODULE_ENABLED - bool "Enable ASYM SIGN crypto module" + bool "ASYM SIGN crypto module" default y help Enables the ASYM SIGN crypto module within the crypto partition. @@ -71,7 +71,7 @@ config TFM_CRYPTO_ASYM_SIGN_MODULE_ENABLED is not used. config TFM_CRYPTO_KEY_DERIVATION_MODULE_ENABLED - bool "Enable KEY DERIVATION crypto module" + bool "KEY DERIVATION crypto module" default y help Enables the KEY_DERIVATION crypto module within the crypto partition.