Commit 0a339a2d authored by Sylvio Alves's avatar Sylvio Alves Committed by Benjamin Cabé
Browse files

mcuboot: kconfig: set default MOVE for Espressif SoCs



Make sure default MOVE option is enabled for Espressif SoCs.

Signed-off-by: default avatarSylvio Alves <sylvio.alves@espressif.com>
parent 1e737d7a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ menu "On board MCUboot operation mode"
choice MCUBOOT_BOOTLOADER_MODE
	prompt "Application assumed MCUboot mode of operation"
	# Should be removed if board dts is updated
	default MCUBOOT_BOOTLOADER_MODE_SWAP_USING_MOVE if SOC_FAMILY_STM32
	default MCUBOOT_BOOTLOADER_MODE_SWAP_USING_MOVE if SOC_FAMILY_STM32 || SOC_FAMILY_ESPRESSIF_ESP32
	default MCUBOOT_BOOTLOADER_MODE_SWAP_USING_OFFSET
	help
	  Informs application build on assumed MCUboot mode of operation.
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ if BOOTLOADER_MCUBOOT
choice MCUBOOT_MODE
	prompt "Mode of operation"
	# Should be removed if board dts is updated
	default MCUBOOT_MODE_SWAP_USING_MOVE if SOC_FAMILY_STM32
	default MCUBOOT_MODE_SWAP_USING_MOVE if SOC_FAMILY_STM32 || SOC_FAMILY_ESPRESSIF_ESP32
	default MCUBOOT_MODE_SWAP_USING_OFFSET
	help
	  The operating mode of MCUboot (which will also be propagated to the application).