esp-idf/components/bootloader_support
Omar Chebib 1e8b9f8b9c fix(bootloader): add legacy retained memory CRC calculation
* Closes https://github.com/espressif/esp-idf/issues/12849

In former versions of ESP-IDF, the user custom memory data in the retained memory
was taken into account during the CRC calculation. This was changed in a later
commit, the custom memory was ignored, therefore this can seen as a breaking change.
This commit gives the possibility to choose between the former (legacy) or
new way of calculating the CRC.
2024-03-11 11:03:06 +08:00
..
bootloader_flash doc(spi_flash): hide unsupported optional features 2024-03-03 23:11:43 +08:00
include Merge branch 'feature/conservative_key_revocation_in_secure_boot_v5.0' into 'release/v5.0' 2024-02-22 17:15:24 +08:00
private_include compiler: replaced noreturn by __noreturn__ in header files 2023-05-30 13:21:17 +08:00
src fix(bootloader): add legacy retained memory CRC calculation 2024-03-11 11:03:06 +08:00
test build system: re-add -Wno-format as private flag for some components 2022-08-03 16:42:47 +04:00
test_apps/rtc_custom_section Bootloader: retained memory can now be kept after reboot when custom data enabled 2022-11-24 17:35:55 +08:00
.build-test-rules.yml Bootloader: retained memory can now be kept after reboot when custom data enabled 2022-11-24 17:35:55 +08:00
CMakeLists.txt build-system: replace ADDITIONAL_MAKE_CLEAN_FILES with ADDITIONAL_CLEAN_FILES 2023-05-10 09:56:15 +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.)