esp-idf/components/bootloader_support
Mahavir Jain ab988ab5ca bootloader_support: move anti rollback API to common loader section
API `bootloader_common_get_partition_description` is required for
anti-rollback feature and should be part of common loader code.
2020-09-30 11:13:13 +05:30
..
include bootloader_support: add esp32-s3 initial support 2020-09-22 15:15:03 +08:00
include_bootloader bootloader: create public bootloader_flash.h header 2020-09-19 10:52:02 +08:00
src bootloader_support: move anti rollback API to common loader section 2020-09-30 11:13:13 +05:30
test cmock: added cmock as component 2020-09-02 16:38:37 +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_support: add esp32-s3 initial support 2020-09-22 15:15:03 +08: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.)