ci: Add test apps for ESP32-S2 Secure Boot

This commit is contained in:
Angus Gratton 2020-07-23 13:11:33 +10:00 committed by Supreet Deshpande
parent 1c6c6eceb5
commit d72350c0ce
5 changed files with 14 additions and 0 deletions

View File

@ -1,4 +1,5 @@
# Secure Boot V2 - ESP-ECO3+
CONFIG_IDF_TARGET="esp32"
CONFIG_SECURE_BOOT=y
CONFIG_ESP32_REV_MIN_3=y
CONFIG_SECURE_BOOT_V2_ENABLED=y

View File

@ -1,4 +1,5 @@
# Secure Boot V1
CONFIG_IDF_TARGET="esp32"
CONFIG_SECURE_BOOT=y
CONFIG_SECURE_BOOT_V1_ENABLED=y
CONFIG_SECURE_BOOT_SIGNING_KEY="test_ecdsa_key.pem"

View File

@ -1,4 +1,5 @@
# ECDSA App signing without secure boot
CONFIG_IDF_TARGET="esp32"
CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT=y
CONFIG_SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT=y
CONFIG_SECURE_BOOT_SIGNING_KEY="test_ecdsa_key.pem"

View File

@ -0,0 +1,5 @@
# ESP32-S2 Secure Boot
CONFIG_IDF_TARGET="esp32s2"
CONFIG_SECURE_BOOT=y
CONFIG_SECURE_BOOT_SIGNING_KEY="test_rsa_3072_key.pem"

View File

@ -0,0 +1,6 @@
# ESP32-S2 Secure Boot & Flash Encryption (Release mode)
CONFIG_IDF_TARGET="esp32s2"
CONFIG_SECURE_BOOT=y
CONFIG_SECURE_BOOT_SIGNING_KEY="test_rsa_3072_key.pem"
CONFIG_SECURE_FLASH_ENC_ENABLED=y
SECURE_FLASH_ENCRYPTION_MODE_RELEASE=y