mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
build_system: Add support efuse
This commit is contained in:
parent
ba903e7618
commit
91676b8620
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"]),
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user