Skip to content

sysbuild: bootloader: fix MCUboot Kconfig symbol placement #93076

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions share/sysbuild/images/bootloader/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,11 @@ config MCUBOOT_MODE_FIRMWARE_UPDATER
mechanism defined for entering the slot1_partition which is a dedicated firmware updater
application used to update the slot0_partition application.

endchoice

config MCUBOOT_MODE_SINGLE_APP_RAM_LOAD
bool "Single app RAM load mode"
depends on MCUBOOT_MODE_RAM_LOAD
help
MCUboot can load the image to RAM from an arbitrary location. In this mode,
MCUboot will copy the image to RAM and begin execution from there. The image
Expand All @@ -139,8 +142,6 @@ config MCUBOOT_MODE_SINGLE_APP_RAM_LOAD
not possible to swap back to older version of the application. In fact, none
of the swap operations are supported in this mode.

endchoice

config MCUBOOT_MODE_FIRMWARE_UPDATER_BOOT_MODE_ENTRANCE
bool "Firmware updater retention boot mode entrance"
depends on MCUBOOT_MODE_FIRMWARE_UPDATER
Expand Down