esp-idf/components/bootloader_support
KonstantinKondrashov b19d685406 efuse: Fix load_efuses_from_flash when FE is on
esp_efuse_utility_load_efuses_from_flash() read emul_efuse
as an encrypted partition, but that is not correct,
this partition was never encrypted.
Need to read it as not encrypted partition.

Fxed the case: If FE is already on then EFUSE VIRT mode can work with it.

Closes https://github.com/espressif/esp-idf/issues/10929
2023-03-29 16:18:54 +08:00
..
include efuse: Fix load_efuses_from_flash when FE is on 2023-03-29 16:18:54 +08:00
include_bootloader
src efuse: Fix load_efuses_from_flash when FE is on 2023-03-29 16:18:54 +08:00
test
test_apps/rtc_custom_section
CMakeLists.txt
Makefile.projbuild
README.rst
component.mk

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