boards: stm32n6570_dk: Use /fsbl variant as mcuboot target

Add a sysbuild configuration to specify that mcuboot uses fsbl variant.

Signed-off-by: Erwan Gouriou <erwan.gouriou@st.com>
This commit is contained in:
Erwan Gouriou
2025-06-23 14:40:56 +02:00
committed by Benjamin Cabé
parent 34df4066a2
commit 13d334abb9
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2025 STMicroelectronics
choice BOOTLOADER
default BOOTLOADER_MCUBOOT
endchoice

View File

@@ -0,0 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2025 STMicroelectronics
if(SB_CONFIG_BOOTLOADER_MCUBOOT)
set_target_properties(mcuboot PROPERTIES BOARD stm32n6570_dk/stm32n657xx/fsbl)
endif()