From 3bfe43fb68302664c26d00893245bdb0ac256c04 Mon Sep 17 00:00:00 2001 From: JiangGuangMing Date: Wed, 4 Sep 2024 09:45:14 -0700 Subject: [PATCH] feat(mbedtls): bringup rom mbedtls feature to formal --- Kconfig | 1 - components/mbedtls/Kconfig | 2 +- components/mbedtls/test_apps/sdkconfig.ci.rom_impl | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Kconfig b/Kconfig index 8597b5579c..c0421160b9 100644 --- a/Kconfig +++ b/Kconfig @@ -611,4 +611,3 @@ mainmenu "Espressif IoT Development Framework Configuration" - CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR - CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT - CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH - - CONFIG_MBEDTLS_USE_CRYPTO_ROM_IMPL diff --git a/components/mbedtls/Kconfig b/components/mbedtls/Kconfig index f22c7eae72..8e621f3882 100644 --- a/components/mbedtls/Kconfig +++ b/components/mbedtls/Kconfig @@ -1106,7 +1106,7 @@ menu "mbedTLS" config MBEDTLS_USE_CRYPTO_ROM_IMPL bool "Use ROM implementation of the crypto algorithm" - depends on ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB && IDF_EXPERIMENTAL_FEATURES + depends on ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB default "n" select MBEDTLS_SHA512_C select MBEDTLS_AES_C diff --git a/components/mbedtls/test_apps/sdkconfig.ci.rom_impl b/components/mbedtls/test_apps/sdkconfig.ci.rom_impl index 552cc7c973..4f79484e47 100644 --- a/components/mbedtls/test_apps/sdkconfig.ci.rom_impl +++ b/components/mbedtls/test_apps/sdkconfig.ci.rom_impl @@ -1,3 +1,2 @@ CONFIG_IDF_TARGET="esp32c2" -CONFIG_IDF_EXPERIMENTAL_FEATURES=y CONFIG_MBEDTLS_USE_CRYPTO_ROM_IMPL=y