boot/mcuboot: update MCUBoot version

Updates default MCUBoot hash.

Signed-off-by: Filipe Cavalcanti <filipe.cavalcanti@espressif.com>
This commit is contained in:
Filipe Cavalcanti 2025-10-10 10:21:37 -03:00 committed by Xiang Xiao
parent 24e1c4df6f
commit c3b5c6cedf
3 changed files with 8 additions and 2 deletions

View file

@ -45,6 +45,9 @@ if(CONFIG_BOOT_MCUBOOT)
set(SRCS
mcuboot/boot/bootutil/src/boot_record.c
mcuboot/boot/bootutil/src/bootutil_area.c
mcuboot/boot/bootutil/src/bootutil_img_hash.c
mcuboot/boot/bootutil/src/bootutil_loader.c
mcuboot/boot/bootutil/src/bootutil_misc.c
mcuboot/boot/bootutil/src/bootutil_public.c
mcuboot/boot/bootutil/src/caps.c

View file

@ -22,11 +22,11 @@ config MCUBOOT_REPOSITORY
config MCUBOOT_VERSION
string "MCUboot version"
default "fefc398cc13ebbc527e297fe9df78cd98a359d75"
default "457be0cf3fb03e9e09938728dece8f03309db973"
---help---
Defines MCUboot version to be downloaded. Either release tag
or commit hash should be specified. Using newer MCUboot version
may cause compatability issues.
may cause compatibility issues.
config MCUBOOT_ENABLE_LOGGING
bool "Enable MCUboot logging"

View file

@ -44,6 +44,9 @@ endif
CFLAGS += -Wno-undef -Wno-unused-but-set-variable
CSRCS := $(MCUBOOT_UNPACK)/boot/bootutil/src/boot_record.c \
$(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_area.c \
$(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_img_hash.c \
$(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_loader.c \
$(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_misc.c \
$(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_public.c \
$(MCUBOOT_UNPACK)/boot/bootutil/src/caps.c \