Merge branch 'feature/add_util_algorithm_to_mbedtls' into 'master'

feat(mbedtls): remove util algorithm and add them to esp8266 rom and mbedtls

See merge request sdk/ESP8266_RTOS_SDK!1256
This commit is contained in:
Dong Heng
2020-05-27 10:22:56 +08:00
60 changed files with 2192 additions and 2230 deletions

View File

@ -8,14 +8,14 @@ endif
PROJECT_NAME := bootloader
COMPONENTS := esptool_py main bootloader_support spi_flash log esp8266 util
COMPONENTS := esptool_py main bootloader_support spi_flash log $(IDF_TARGET)
# Clear C and CXX from top level project
CFLAGS =
CXXFLAGS =
#We cannot include the esp8266 component directly but we need its includes.
CFLAGS += -I $(IDF_PATH)/components/esp8266/include -I $(IDF_PATH)/components/util/include
CFLAGS += -I $(IDF_PATH)/components/$(IDF_TARGET)/include -I $(IDF_PATH)/components/mbedtls/port/include/$(IDF_TARGET)
CFLAGS += -I $(IDF_PATH)/components/esp_common/include
# The bootloader pseudo-component is also included in this build, for its Kconfig.projbuild to be included.