This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit d55f9d8c416141b5e90d674103fdede788d25492 Author: Felipe Moura <[email protected]> AuthorDate: Wed Aug 5 17:59:45 2026 -0300 arch/risc-v/espressif: update ESP HAL to prefix wpa_supplicant AES symbols The HAL's wpa_supplicant defines aes_encrypt()/aes_decrypt(), which collide at link time with the same symbols from crypto/aes.c whenever a Wi-Fi configuration also enables CRYPTO_CRYPTODEV_SOFTWARE_CRYPTO. Bump the HAL to the revision that prefixes them on NuttX (espressif/esp-hal-3rdparty#13). Signed-off-by: Felipe Moura <[email protected]> --- arch/risc-v/src/common/espressif/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/risc-v/src/common/espressif/Make.defs b/arch/risc-v/src/common/espressif/Make.defs index b864f0fd908..6f7acb1b98d 100644 --- a/arch/risc-v/src/common/espressif/Make.defs +++ b/arch/risc-v/src/common/espressif/Make.defs @@ -235,7 +235,7 @@ endif ESP_HAL_3RDPARTY_REPO = esp-hal-3rdparty ifndef ESP_HAL_3RDPARTY_VERSION - ESP_HAL_3RDPARTY_VERSION = b90b1837cb5ad24747deb4c895246037cc206ce5 + ESP_HAL_3RDPARTY_VERSION = 1e9759ca6fbdd22fcadd7108aaab6f4daca1345f endif ifndef ESP_HAL_3RDPARTY_URL
