Przeglądaj źródła

ci: Add test apps for ESP32-S2 Secure Boot

Angus Gratton 5 lat temu
rodzic
commit
b9a1d82ea3

+ 1 - 0
tools/test_apps/security/secure_boot/sdkconfig.ci.00

@@ -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

+ 1 - 0
tools/test_apps/security/secure_boot/sdkconfig.ci.01

@@ -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"

+ 1 - 0
tools/test_apps/security/secure_boot/sdkconfig.ci.02

@@ -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"

+ 5 - 0
tools/test_apps/security/secure_boot/sdkconfig.ci.03

@@ -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"
+

+ 6 - 0
tools/test_apps/security/secure_boot/sdkconfig.ci.04

@@ -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