esp-idf/components/bootloader_support
Jakob Hasse 33a3616635 refactor (bootloader_support, efuse)!: remove target-specific rom includes
The following two functions in bootloader_support are private now:
* esp_secure_boot_verify_sbv2_signature_block()
* esp_secure_boot_verify_rsa_signature_block()
They have been moved into private header files
inside bootloader_private/

* Removed bootloader_reset_reason.h and
  bootloader_common_get_reset_reason() completely.
  Alternative in ROM component is available.

* made esp_efuse.h independent of target-specific rom header
2022-07-13 10:29:02 +08:00
..
bootloader_flash efuse: Adds major and minor versions and others 2022-07-05 14:38:27 +08:00
include refactor (bootloader_support, efuse)!: remove target-specific rom includes 2022-07-13 10:29:02 +08:00
private_include refactor (bootloader_support, efuse)!: remove target-specific rom includes 2022-07-13 10:29:02 +08:00
src refactor (bootloader_support, efuse)!: remove target-specific rom includes 2022-07-13 10:29:02 +08:00
test
CMakeLists.txt
README.rst

README.rst

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.)