esp-idf/components/bootloader_support
Ivan Grokhotkov 66a32c1707 bootloader: fix section placement issues found by the check script
Summary of changes:

- bootloader_clock split into *_clock_init and *_clock_loader.
  Only esp_clk_apb_freq is in *_clock_loader.
- bootloader_common moved out of loader; functions needed in loader
  (or, referenced from bootloader_utility) were moved into
  bootloader_common_loader.c.
- assert and abort moved into bootloader_panic, made part of the
  loader
- rtc_clk and rtc_time made part of loader
2020-09-03 18:14:17 +02:00
..
include spi_flash: add config option to override flash size in bootloader header 2020-09-02 00:35:53 +08:00
include_bootloader bootloader: combine console code for ESP32 and S2, add USB support 2020-06-26 15:38:49 +02:00
src bootloader: fix section placement issues found by the check script 2020-09-03 18:14:17 +02:00
test test: declare requirements and include dirs private 2020-03-23 10:58:50 +08:00
CMakeLists.txt bootloader: fix section placement issues found by the check script 2020-09-03 18:14:17 +02:00
component.mk bootloader: fix section placement issues found by the check script 2020-09-03 18:14:17 +02:00
Makefile.projbuild Secure boot: Correctly re-sign if signing key changes, better error if missing 2016-12-01 23:49:12 -08:00
README.rst Refactor existing bootloader common functionality into bootloader_support component 2016-11-02 17:58:41 +11:00

Bootloader Support Component
============================

Overview
--------

"Bootloader support" contains APIs which are used by the bootloader but are also needed for the main app.

Code in this component needs to be aware of being executed in a bootloader environment (no RTOS available, BOOTLOADER_BUILD macro set) or in an esp-idf app environment (RTOS running, need locking support.)