Skip to content
Closed
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
26 changes: 26 additions & 0 deletions modules/Kconfig.mcuboot
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,32 @@ config BOOT_IMAGE_ACCESS_HOOKS
It is up to the application project to add source file which
implements hooks to the build.

config MCUBOOT_BOOT_REQUEST
bool "MCUboot bootloader requests"
help
Handle bootloader requests.

if MCUBOOT_BOOT_REQUEST

choice MCUBOOT_BOOT_REQUEST_IMPL
prompt "Shared memory backend"
default MCUBOOT_BOOT_REQUEST_IMPL_RETENTION if RETENTION

config MCUBOOT_BOOT_REQUEST_IMPL_RETENTION
bool "Retention"
depends on RETENTION
help
Use zephyr,bootloader-request chosen node compatible with the
zephyr,retention driver as the memory area to store and read from the
bootloader requests.
The built-in prefix property should be used to indicate the request
structure version to ensure compatibility between the bootloader and
the application.

endchoice

endif # MCUBOOT_BOOT_REQUEST
Comment on lines +338 to +362
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


if MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP_WITH_REVERT

config MCUBOOT_BOOTUTIL_LIB_FOR_DIRECT_XIP
Expand Down