mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
secure boot: Rename efuse option for UART bootloader to option for ROM interpreter
This commit is contained in:
parent
bcdebda8e4
commit
8691b54758
@ -93,14 +93,14 @@ config SECURE_BOOT_DISABLE_JTAG
|
|||||||
|
|
||||||
It is recommended this option remains set for production environments.
|
It is recommended this option remains set for production environments.
|
||||||
|
|
||||||
config SECURE_BOOT_DISABLE_UART_BOOTLOADER
|
config SECURE_BOOT_DISABLE_ROM_BASIC
|
||||||
bool "First boot: Permanently disable UART bootloader"
|
bool "First boot: Permanently disable ROM BASIC fallback"
|
||||||
depends on SECURE_BOOTLOADER_ENABLED
|
depends on SECURE_BOOTLOADER_ENABLED
|
||||||
default Y
|
default Y
|
||||||
help
|
help
|
||||||
Bootloader permanently disables UART and other bootloader modes when enabling secure boot. This happens on first boot.
|
Bootloader permanently disables ROM BASIC (on UART console) as a fallback if the bootloader image becomes invalid. This happens on first boot.
|
||||||
|
|
||||||
It is recommended this option remains set for production environments.
|
It is recommended this option remains set in production environments.
|
||||||
|
|
||||||
config SECURE_BOOT_TEST_MODE
|
config SECURE_BOOT_TEST_MODE
|
||||||
bool "Test mode: don't actually enable secure boot"
|
bool "Test mode: don't actually enable secure boot"
|
||||||
|
@ -46,7 +46,7 @@ esp_err_t esp_secure_boot_verify_signature(uint32_t src_addr, uint32_t length)
|
|||||||
uint8_t digest[32];
|
uint8_t digest[32];
|
||||||
ptrdiff_t keylen;
|
ptrdiff_t keylen;
|
||||||
const uint8_t *data, *digest_data;
|
const uint8_t *data, *digest_data;
|
||||||
uint32_t digest_len, chunk_len;
|
uint32_t digest_len;
|
||||||
const signature_block_t *sigblock;
|
const signature_block_t *sigblock;
|
||||||
bool is_valid;
|
bool is_valid;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user