From ee9a072c82d8f7ef64239b7279d50de0071f8ca9 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 988159a18f..652df83edd 100644 --- a/Kconfig +++ b/Kconfig @@ -676,6 +676,5 @@ 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 - CONFIG_ESP_WIFI_EAP_TLS1_3 - CONFIG_ESP_WIFI_ENABLE_ROAMING_APP diff --git a/components/mbedtls/Kconfig b/components/mbedtls/Kconfig index fe8c437754..22cc25a924 100644 --- a/components/mbedtls/Kconfig +++ b/components/mbedtls/Kconfig @@ -1138,7 +1138,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