Makefile.projbuild 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. # Bootloader component (top-level project parts)
  2. #
  3. # The bootloader is not a real component that gets linked into the project.
  4. # Instead it is an entire standalone project (in subproject/) that gets
  5. # built in the upper project's build directory. This Makefile.projbuild provides
  6. # the glue to build the bootloader project from the original project. It
  7. # basically runs Make in the subproject/ directory but it needs to
  8. # zero some variables the ESP-IDF project.mk makefile exports first, to not
  9. # let them interfere.
  10. #
  11. BOOTLOADER_COMPONENT_PATH := $(COMPONENT_PATH)
  12. BOOTLOADER_BUILD_DIR=$(abspath $(BUILD_DIR_BASE)/bootloader)
  13. BOOTLOADER_BIN=$(BOOTLOADER_BUILD_DIR)/bootloader.bin
  14. # signing key path is resolved relative to the project directory
  15. CONFIG_SECURE_BOOT_SIGNING_KEY ?=
  16. SECURE_BOOT_SIGNING_KEY=$(abspath $(call dequote,$(CONFIG_SECURE_BOOT_SIGNING_KEY)))
  17. export SECURE_BOOT_SIGNING_KEY # used by bootloader_support component
  18. # Has a matching value in bootloader_support esp_flash_partitions.h
  19. BOOTLOADER_OFFSET := 0x1000
  20. # Custom recursive make for bootloader sub-project
  21. #
  22. # NB: Some variables are cleared in the environment, not
  23. # overriden, because they need to be re-defined in the child
  24. # project.
  25. BOOTLOADER_MAKE= +\
  26. PROJECT_PATH= \
  27. COMPONENT_DIRS= \
  28. $(MAKE) -C $(BOOTLOADER_COMPONENT_PATH)/subproject \
  29. V=$(V) \
  30. BUILD_DIR_BASE=$(BOOTLOADER_BUILD_DIR) \
  31. TEST_COMPONENTS= \
  32. TESTS_ALL=
  33. .PHONY: bootloader-clean bootloader-flash bootloader-list-components bootloader $(BOOTLOADER_BIN)
  34. $(BOOTLOADER_BIN): $(SDKCONFIG_MAKEFILE)
  35. $(BOOTLOADER_MAKE) $@
  36. clean: bootloader-clean
  37. bootloader-list-components:
  38. $(BOOTLOADER_MAKE) list-components
  39. ifndef CONFIG_SECURE_BOOT_ENABLED
  40. # If secure boot disabled, bootloader flashing is integrated
  41. # with 'make flash' and no warnings are printed.
  42. bootloader: $(BOOTLOADER_BIN)
  43. @echo $(SEPARATOR)
  44. @echo "Bootloader built. Default flash command is:"
  45. @echo "$(ESPTOOLPY_WRITE_FLASH) $(BOOTLOADER_OFFSET) $^"
  46. ESPTOOL_ALL_FLASH_ARGS += $(BOOTLOADER_OFFSET) $(BOOTLOADER_BIN)
  47. bootloader-flash: $(BOOTLOADER_BIN) $(call prereq_if_explicit,erase_flash)
  48. $(ESPTOOLPY_WRITE_FLASH) 0x1000 $^
  49. else ifdef CONFIG_SECURE_BOOTLOADER_ONE_TIME_FLASH
  50. # One time flashing requires user to run esptool.py command themselves,
  51. # and warning is printed about inability to reflash.
  52. #
  53. # The flashing command is deliberately printed without an auto-reset
  54. # step, so the device doesn't immediately reset to flash itself.
  55. bootloader: $(BOOTLOADER_BIN)
  56. @echo $(SEPARATOR)
  57. @echo "Bootloader built. One-time flash command is:"
  58. @echo "$(subst hard_reset,no_reset,$(ESPTOOLPY_WRITE_FLASH)) $(BOOTLOADER_OFFSET) $(BOOTLOADER_BIN)"
  59. @echo $(SEPARATOR)
  60. @echo "* IMPORTANT: After first boot, BOOTLOADER CANNOT BE RE-FLASHED on same device"
  61. else ifdef CONFIG_SECURE_BOOTLOADER_REFLASHABLE
  62. # Reflashable secure bootloader
  63. # generates a digest binary (bootloader + digest)
  64. BOOTLOADER_DIGEST_BIN := $(BOOTLOADER_BUILD_DIR)/bootloader-reflash-digest.bin
  65. SECURE_BOOTLOADER_KEY := $(BOOTLOADER_BUILD_DIR)/secure-bootloader-key.bin
  66. ifdef CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES
  67. $(SECURE_BOOTLOADER_KEY): $(SECURE_BOOT_SIGNING_KEY)
  68. $(ESPSECUREPY) digest_private_key -k $< $@
  69. else
  70. $(SECURE_BOOTLOADER_KEY):
  71. @echo "No pre-generated key for a reflashable secure bootloader is available, due to signing configuration."
  72. @echo "To generate one, you can use this command:"
  73. @echo "espsecure.py generate_flash_encryption_key $@"
  74. @echo "then re-run make."
  75. exit 1
  76. endif
  77. bootloader: $(BOOTLOADER_DIGEST_BIN)
  78. @echo $(SEPARATOR)
  79. @echo "Bootloader built and secure digest generated. First time flash command is:"
  80. @echo "$(ESPEFUSEPY) burn_key secure_boot $(SECURE_BOOTLOADER_KEY)"
  81. @echo "$(ESPTOOLPY_WRITE_FLASH) $(BOOTLOADER_OFFSET) $(BOOTLOADER_BIN)"
  82. @echo $(SEPARATOR)
  83. @echo "To reflash the bootloader after initial flash:"
  84. @echo "$(ESPTOOLPY_WRITE_FLASH) 0x0 $(BOOTLOADER_DIGEST_BIN)"
  85. @echo $(SEPARATOR)
  86. @echo "* After first boot, only re-flashes of this kind (with same key) will be accepted."
  87. @echo "* Not recommended to re-use the same secure boot keyfile on multiple production devices."
  88. $(BOOTLOADER_DIGEST_BIN): $(BOOTLOADER_BIN) $(SECURE_BOOTLOADER_KEY)
  89. @echo "DIGEST $(notdir $@)"
  90. $(Q) $(ESPSECUREPY) digest_secure_bootloader -k $(SECURE_BOOTLOADER_KEY) -o $@ $<
  91. else # CONFIG_SECURE_BOOT_ENABLED && !CONFIG_SECURE_BOOTLOADER_REFLASHABLE && !CONFIG_SECURE_BOOTLOADER_ONE_TIME_FLASH
  92. bootloader:
  93. @echo "Invalid bootloader target: bad sdkconfig?"
  94. @exit 1
  95. endif
  96. ifndef CONFIG_SECURE_BOOT_ENABLED
  97. # don't build bootloader by default is secure boot is enabled
  98. all_binaries: $(BOOTLOADER_BIN)
  99. endif
  100. bootloader-clean: $(SDKCONFIG_MAKEFILE)
  101. $(BOOTLOADER_MAKE) app-clean
  102. ifdef CONFIG_SECURE_BOOTLOADER_REFLASHABLE
  103. rm -f $(SECURE_BOOTLOADER_KEY) $(BOOTLOADER_DIGEST_BIN)
  104. endif