Skip to content

Commit f076399

Browse files
committed
Merge branch 'feature/make_mbedtls_port_for_esp8266' into 'master'
feat(mbedtls): Make mbedtls port for esp8266 See merge request sdk/ESP8266_RTOS_SDK!142
2 parents 1a1d287 + e5b90bd commit f076399

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

components/ssl/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if(CONFIG_SSL_USING_MBEDTLS)
66
set(COMPONENT_ADD_INCLUDEDIRS
77
openssl/include
88
mbedtls/mbedtls/include
9-
mbedtls/port/include)
9+
mbedtls/port/esp8266/include)
1010

1111
set(COMPONENT_PRIV_INCLUDEDIRS
1212
openssl/include/internal
@@ -17,7 +17,7 @@ set(COMPONENT_SRCDIRS
1717
openssl/source/library
1818
openssl/source/platform
1919
mbedtls/mbedtls/library
20-
mbedtls/port)
20+
mbedtls/port/esp8266)
2121
else()
2222
set(COMPONENT_ADD_INCLUDEDIRS include axtls/include)
2323

components/ssl/component.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ COMPONENT_PRIV_INCLUDEDIRS := openssl/include/internal openssl/include/openssl o
1717

1818
COMPONENT_SRCDIRS := openssl/source/library openssl/source/platform
1919

20-
COMPONENT_ADD_INCLUDEDIRS += mbedtls/mbedtls/include mbedtls/port/include
21-
COMPONENT_SRCDIRS += mbedtls/mbedtls/library mbedtls/port
20+
COMPONENT_ADD_INCLUDEDIRS += mbedtls/mbedtls/include mbedtls/port/esp8266/include
21+
COMPONENT_SRCDIRS += mbedtls/mbedtls/library mbedtls/port/esp8266
2222
else
2323
COMPONENT_ADD_INCLUDEDIRS := axtls/include
2424
COMPONENT_SRCDIRS := axtls/source/ssl axtls/source/crypto

0 commit comments

Comments
 (0)