Merge branch 'fix/partitions_ota_c2_c61_secure_boot_scheme' into 'master'

test: Incorrect SB key type for C2/C61

See merge request espressif/esp-idf!50232
This commit is contained in:
Harshal Patil
2026-07-01 15:34:41 +05:30
3 changed files with 12 additions and 0 deletions

View File

@@ -201,6 +201,8 @@ examples/system/ota/partitions_ota:
- if: CONFIG_NAME == "recovery_bootloader" and SOC_RECOVERY_BOOTLOADER_SUPPORTED != 1
temporary: true
reason: disabled for targets that do not support recovery bootloader
- if: CONFIG_NAME == "on_update_no_sb_rsa" and SOC_SECURE_BOOT_V2_RSA != 1
reason: Secure Boot V2 with RSA signatures is not supported.
disable_test:
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
temporary: true

View File

@@ -0,0 +1,5 @@
CONFIG_IDF_TARGET="esp32c2"
# ESP32-C2 has no RSA based Secure Boot V2 support, so use the ECDSA scheme.
CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME=y
CONFIG_SECURE_BOOT_SIGNING_KEY="test/secure_boot_signing_key_ecdsa.pem"

View File

@@ -0,0 +1,5 @@
CONFIG_IDF_TARGET="esp32c61"
# ESP32-C61 has no RSA based Secure Boot V2 support, so use the ECDSA scheme.
CONFIG_SECURE_SIGNED_APPS_ECDSA_V2_SCHEME=y
CONFIG_SECURE_BOOT_SIGNING_KEY="test/secure_boot_signing_key_ecdsa.pem"