mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f339b3fc96
These functions were used only for esp32 in secure_boot and flash encryption. Use idf efuse APIs instead of efuse regs.
19 lines
599 B
Makefile
19 lines
599 B
Makefile
#
|
|
# Component Makefile
|
|
# currently the only SoC supported; to be moved into Kconfig
|
|
TARGET := $(IDF_TARGET)
|
|
|
|
COMPONENT_SRCDIRS := $(TARGET) src
|
|
ifdef CONFIG_IDF_TARGET_ESP32
|
|
COMPONENT_OBJEXCLUDE := src/esp_efuse_api_key_esp32xx.o
|
|
else
|
|
COMPONENT_OBJEXCLUDE := src/esp_efuse_api_key_esp32.o
|
|
endif
|
|
|
|
COMPONENT_PRIV_INCLUDEDIRS := private_include $(TARGET)/private_include
|
|
COMPONENT_ADD_INCLUDEDIRS := include $(TARGET)/include
|
|
|
|
ifdef CONFIG_EFUSE_VIRTUAL
|
|
$(info eFuse virtual mode is enabled. If Secure boot or Flash encryption is enabled then it does not provide any security. FOR TESTING ONLY!)
|
|
endif
|