From 03d86fc7c77b00f26fd4fe82f00ea27500694d0c Mon Sep 17 00:00:00 2001 From: Tomi Fontanilles Date: Thu, 23 May 2024 16:28:13 +0300 Subject: [PATCH] boards: st: b_u585_iot02a: stick to RSA signature type in TF-M's MCUboot The default has been changed to EC-P256, but there are issues with this board when TF-M is compiled with MCUBOOT_USE_PSA_CRYPTO (required by EC-P256) because of its integration in TF-M. Do not enable PSA crypto on this board for the time being. Signed-off-by: Tomi Fontanilles --- .../st/b_u585i_iot02a/b_u585i_iot02a_stm32u585xx_ns_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boards/st/b_u585i_iot02a/b_u585i_iot02a_stm32u585xx_ns_defconfig b/boards/st/b_u585i_iot02a/b_u585i_iot02a_stm32u585xx_ns_defconfig index 2141cc748f8..8dd715679bb 100644 --- a/boards/st/b_u585i_iot02a/b_u585i_iot02a_stm32u585xx_ns_defconfig +++ b/boards/st/b_u585i_iot02a/b_u585i_iot02a_stm32u585xx_ns_defconfig @@ -19,3 +19,5 @@ CONFIG_PINCTRL=y CONFIG_ARM_TRUSTZONE_M=y CONFIG_RUNTIME_NMI=y CONFIG_TRUSTED_EXECUTION_NONSECURE=y + +CONFIG_TFM_MCUBOOT_SIGNATURE_TYPE="RSA-3072"