Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions boards/st/stm32h573i_dk/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,21 @@ config I2C_STM32_V2_TIMING

endif # DISPLAY

if BOARD_STM32H573I_DK_STM32H573XX_EXT_FLASH_APP

if MCUBOOT

# A dependency of FLASH_STM32_XSPI & STM32_MEMMAP
config FLASH
default y

# So MCUboot can access ext Flash in memory-mapped mode
# to read app slots, start the app, or copy it to RAM.
config STM32_MEMMAP
default y

endif # MCUBOOT

endif # BOARD_STM32H573I_DK_STM32H573XX_EXT_FLASH_APP

endif # BOARD_STM32H573I_DK
14 changes: 14 additions & 0 deletions boards/st/stm32h573i_dk/Kconfig.sysbuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# SPDX-FileCopyrightText: Copyright The Zephyr Project Contributors
# SPDX-License-Identifier: Apache-2.0

choice BOOTLOADER
default BOOTLOADER_MCUBOOT
endchoice

choice BOOT_SIGNATURE_TYPE
default BOOT_SIGNATURE_TYPE_NONE
endchoice

choice MCUBOOT_MODE
default MCUBOOT_MODE_DIRECT_XIP
endchoice
2 changes: 2 additions & 0 deletions boards/st/stm32h573i_dk/board.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ board:
vendor: st
socs:
- name: stm32h573xx
variants:
- name: ext_flash_app
Loading
Loading