mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
secure_boot_v2: Fix warning message
This commit is contained in:
@@ -277,7 +277,7 @@ static esp_err_t check_and_generate_secure_boot_keys(const esp_image_metadata_t
|
|||||||
|
|
||||||
ESP_LOGI(TAG, "%d signature block(s) found appended to the app.", app_key_digests.num_digests);
|
ESP_LOGI(TAG, "%d signature block(s) found appended to the app.", app_key_digests.num_digests);
|
||||||
if (app_key_digests.num_digests > boot_key_digests.num_digests) {
|
if (app_key_digests.num_digests > boot_key_digests.num_digests) {
|
||||||
ESP_LOGW(TAG, "App has %d signature blocks but bootloader only has %d. Some keys missing from bootloader?");
|
ESP_LOGW(TAG, "App has %d signature blocks but bootloader only has %d. Some keys missing from bootloader?", app_key_digests.num_digests, boot_key_digests.num_digests);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Confirm if at least one public key from the application matches a public key in the bootloader
|
/* Confirm if at least one public key from the application matches a public key in the bootloader
|
||||||
|
Reference in New Issue
Block a user