esp-idf/components/bootloader_support
KonstantinKondrashov 09af4a9fad bootloader: Fix esp_get_flash_encryption_mode(). RELEASE = (CRYPT_CNT == max) or (CRYPT_CNT.write_protect == true)
If the CRYPT_CNT efuse is max it means the same as a write protection bit for this efuse.

Closes: https://github.com/espressif/esp-idf/issues/5747
2020-09-11 04:20:23 +00: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 esp_get_flash_encryption_mode(). RELEASE = (CRYPT_CNT == max) or (CRYPT_CNT.write_protect == true) 2020-09-11 04:20:23 +00:00
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: 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.)