fix(bootloader): use ESP_EARLY_LOG before console is ready

This commit is contained in:
Chen Jichang
2025-03-13 15:08:09 +08:00
parent 44117b623d
commit 9fd0f634d2
11 changed files with 12 additions and 12 deletions

View File

@@ -190,7 +190,7 @@ esp_err_t bootloader_init(void)
// init eFuse virtual mode (read eFuses to RAM)
#ifdef CONFIG_EFUSE_VIRTUAL
ESP_LOGW(TAG, "eFuse virtual mode is enabled. If Secure boot or Flash encryption is enabled then it does not provide any security. FOR TESTING ONLY!");
ESP_EARLY_LOGW(TAG, "eFuse virtual mode is enabled. If Secure boot or Flash encryption is enabled then it does not provide any security. FOR TESTING ONLY!");
#ifndef CONFIG_EFUSE_VIRTUAL_KEEP_IN_FLASH
esp_efuse_init_virtual_mode_in_ram();
#endif