diff --git a/make/project.mk b/make/project.mk index a1307b045..6f86cbef0 100644 --- a/make/project.mk +++ b/make/project.mk @@ -521,7 +521,7 @@ endef define GenerateComponentTargets .PHONY: component-$(2)-build component-$(2)-clean -component-$(2)-build: check-submodules $(call prereq_if_explicit, component-$(2)-clean) | $(BUILD_DIR_BASE)/$(2) +component-$(2)-build: check-submodules efuse_table $(call prereq_if_explicit, component-$(2)-clean) | $(BUILD_DIR_BASE)/$(2) $(call ComponentMake,$(1),$(2)) build component-$(2)-clean: | $(BUILD_DIR_BASE)/$(2) $(BUILD_DIR_BASE)/$(2)/component_project_vars.mk diff --git a/tools/ci/executable-list.txt b/tools/ci/executable-list.txt index 06821ebbd..e379ec949 100644 --- a/tools/ci/executable-list.txt +++ b/tools/ci/executable-list.txt @@ -5,6 +5,8 @@ components/espcoredump/espcoredump.py components/heap/test_multi_heap_host/test_all_configs.sh components/idf_test/unit_test/TestCaseScript/IDFUnitTest/__init__.py components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py +components/efuse/efuse_table_gen.py +components/efuse/test_efuse_host/efuse_tests.py components/partition_table/gen_esp32part.py components/partition_table/parttool.py components/app_update/gen_empty_partition.py diff --git a/tools/idf.py b/tools/idf.py index 5550fc430..927efca0f 100755 --- a/tools/idf.py +++ b/tools/idf.py @@ -422,6 +422,8 @@ ACTIONS = { "bootloader-flash": (flash, ["bootloader"], ["erase_flash"]), "app": (build_target, [], ["clean", "fullclean", "reconfigure"]), "app-flash": (flash, ["app"], ["erase_flash"]), + "efuse_common_table": (build_target, [], ["reconfigure"]), + "efuse_custom_table": (build_target, [], ["reconfigure"]), "partition_table": (build_target, [], ["reconfigure"]), "partition_table-flash": (flash, ["partition_table"], ["erase_flash"]), "flash": (flash, ["all"], ["erase_flash"]), diff --git a/tools/unit-test-app/sdkconfig.defaults b/tools/unit-test-app/sdkconfig.defaults index 65fdb2c0c..afaf11031 100644 --- a/tools/unit-test-app/sdkconfig.defaults +++ b/tools/unit-test-app/sdkconfig.defaults @@ -28,5 +28,6 @@ CONFIG_ESP_TIMER_PROFILING=y CONFIG_ADC2_DISABLE_DAC=n CONFIG_WARN_WRITE_STRINGS=y CONFIG_SPI_MASTER_IN_IRAM=y +CONFIG_EFUSE_VIRTUAL=y CONFIG_SPIRAM_BANKSWITCH_ENABLE=n CONFIG_FATFS_ALLOC_EXTRAM_FIRST=y