feat: Update mbedtls to 1d34215a which is behind mbedtls-3.6.3 on branch mbedtls-3.6.3-idf

This commit is contained in:
Xu Chun Guang
2025-04-15 17:04:53 +08:00
parent 2cfa9d40c2
commit 0f71f1c583
154 changed files with 30305 additions and 677 deletions

View File

@@ -1,4 +1,4 @@
if(MBEDTLS_V3)
if(CONFIG_MBEDTLS_V3)
return()
endif()

View File

File diff suppressed because it is too large Load Diff

View File

@@ -2,13 +2,15 @@
# Component Makefile
#
COMPONENT_ADD_INCLUDEDIRS := port/include mbedtls/include port/include/$(IDF_TARGET)
CURRENT_DIR := mbedtls_v2
COMPONENT_SRCDIRS := mbedtls/library port port/$(IDF_TARGET)
COMPONENT_ADD_INCLUDEDIRS := $(CURRENT_DIR)/port/include $(CURRENT_DIR)/mbedtls/include $(CURRENT_DIR)/port/include/$(IDF_TARGET)
COMPONENT_OBJEXCLUDE := mbedtls/library/net_sockets.o
COMPONENT_SRCDIRS := $(CURRENT_DIR)/mbedtls/library $(CURRENT_DIR)/port $(CURRENT_DIR)/port/$(IDF_TARGET)
COMPONENT_SUBMODULES += mbedtls
COMPONENT_OBJEXCLUDE := $(CURRENT_DIR)/mbedtls/library/net_sockets.o
COMPONENT_SUBMODULES += $(CURRENT_DIR)/mbedtls
ifdef CONFIG_MBEDTLS_DYNAMIC_BUFFER
@@ -26,6 +28,6 @@ WRAP_ARGUMENT := -Wl,--wrap=
COMPONENT_ADD_LDFLAGS = -l$(COMPONENT_NAME) $(addprefix $(WRAP_ARGUMENT),$(WRAP_FUNCTIONS))
COMPONENT_SRCDIRS += port/dynamic
COMPONENT_SRCDIRS += $(CURRENT_DIR)/port/dynamic
endif