mirror of
https://github.com/espressif/esp-idf
synced 2025-04-09 08:10:10 -04:00
Fix warnings where undefined vars are used. Make Kconfig emit "FOO=" for unset bool options To ensure make variables are always defined, even if empty. When writing auto.conf, include symbols disabled by dependency to make sure all make variables are always defined. Fixes espressif/esp-idf#137 Cherry-picked from https://github.com/espressif/esp-idf/pull/138
46 lines
1.5 KiB
Makefile
Executable File
46 lines
1.5 KiB
Makefile
Executable File
COMPONENT_ADD_INCLUDEDIRS := include
|
|
COMPONENT_PRIV_INCLUDEDIRS := include_priv
|
|
|
|
ifdef IS_BOOTLOADER_BUILD
|
|
# share "private" headers with the bootloader component
|
|
# eventual goal: all functionality that needs this lives in bootloader_support
|
|
COMPONENT_ADD_INCLUDEDIRS += include_priv
|
|
endif
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
#
|
|
# Secure boot signing key support
|
|
#
|
|
ifneq ("$(CONFIG_SECURE_BOOT_ENABLED)","")
|
|
|
|
# this path is created relative to the component build directory
|
|
SECURE_BOOT_VERIFICATION_KEY := $(abspath signature_verification_key.bin)
|
|
|
|
ifneq ("$(CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES)","")
|
|
# verification key derived from signing key.
|
|
$(SECURE_BOOT_VERIFICATION_KEY): $(SECURE_BOOT_SIGNING_KEY) $(SDKCONFIG_MAKEFILE)
|
|
$(ESPSECUREPY) extract_public_key --keyfile $< $@
|
|
else
|
|
# find the configured public key file
|
|
ORIG_SECURE_BOOT_VERIFICATION_KEY := $(call resolvepath,$(call dequote,$(CONFIG_SECURE_BOOT_VERIFICATION_KEY)),$(PROJECT_PATH))
|
|
|
|
$(ORIG_SECURE_BOOT_VERIFICATION_KEY):
|
|
@echo "Secure boot verification public key '$@' missing."
|
|
@echo "This can be extracted from the private signing key, see"
|
|
@echo "docs/security/secure-boot.rst for details."
|
|
exit 1
|
|
|
|
# copy it into the build dir, so the secure boot verification key has
|
|
# a predictable file name
|
|
$(SECURE_BOOT_VERIFICATION_KEY): $(ORIG_SECURE_BOOT_VERIFICATION_KEY) $(SDKCONFIG_MAKEFILE)
|
|
$(summary) CP $< $@
|
|
cp $< $@
|
|
endif
|
|
|
|
COMPONENT_EXTRA_CLEAN += $(SECURE_BOOT_VERIFICATION_KEY)
|
|
|
|
COMPONENT_EMBED_FILES := $(SECURE_BOOT_VERIFICATION_KEY)
|
|
|
|
endif
|