esp_hw_support: Update build system support for mergin esp_ds.c files

into one
This commit is contained in:
Aditya Patwardhan
2022-11-04 11:47:47 +05:30
parent efd05fdebb
commit 6a75fe5912
5 changed files with 11 additions and 8 deletions

View File

@@ -57,6 +57,10 @@ if(NOT BOOTLOADER_BUILD)
list(APPEND srcs "esp_etm.c")
endif()
if(CONFIG_SOC_DIG_SIGN_SUPPORTED)
list(APPEND srcs "esp_ds.c")
endif()
# ESP32C6-TODO
if(CONFIG_IDF_TARGET_ESP32C6)
list(REMOVE_ITEM srcs

View File

@@ -4,11 +4,11 @@ set(srcs "rtc_clk_init.c"
"rtc_pm.c"
"rtc_sleep.c"
"rtc_time.c"
"chip_info.c")
"chip_info.c"
)
if(NOT BOOTLOADER_BUILD)
list(APPEND srcs "esp_crypto_lock.c"
"esp_ds.c"
"sar_periph_ctrl.c")
# init constructor for wifi

View File

@@ -4,11 +4,11 @@ set(srcs "rtc_clk_init.c"
"rtc_pm.c"
"rtc_sleep.c"
"rtc_time.c"
"chip_info.c")
"chip_info.c"
)
if(NOT BOOTLOADER_BUILD)
list(APPEND srcs "esp_crypto_lock.c"
"esp_ds.c"
"sar_periph_ctrl.c")
if(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE)

View File

@@ -13,7 +13,6 @@ set(srcs
if(NOT BOOTLOADER_BUILD)
list(APPEND srcs "memprot.c"
"esp_crypto_lock.c"
"esp_ds.c"
"sar_periph_ctrl.c")
# init constructor for wifi

View File

@@ -8,11 +8,11 @@ set(srcs
"rtc_pm.c"
"rtc_sleep.c"
"rtc_time.c"
"chip_info.c")
"chip_info.c"
)
if(NOT BOOTLOADER_BUILD)
list(APPEND srcs "esp_ds.c"
"esp_crypto_lock.c"
list(APPEND srcs "esp_crypto_lock.c"
"sar_periph_ctrl.c")
if(CONFIG_ESP_SYSTEM_MEMPROT_FEATURE)