This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new c3b5c6ced boot/mcuboot: update MCUBoot version
c3b5c6ced is described below

commit c3b5c6cedfa3496447739ebf04e47fafd1db7f21
Author: Filipe Cavalcanti <[email protected]>
AuthorDate: Fri Oct 10 10:21:37 2025 -0300

    boot/mcuboot: update MCUBoot version
    
    Updates default MCUBoot hash.
    
    Signed-off-by: Filipe Cavalcanti <[email protected]>
---
 boot/mcuboot/CMakeLists.txt | 3 +++
 boot/mcuboot/Kconfig        | 4 ++--
 boot/mcuboot/Makefile       | 3 +++
 3 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/boot/mcuboot/CMakeLists.txt b/boot/mcuboot/CMakeLists.txt
index 2ea3e7137..49c02a133 100644
--- a/boot/mcuboot/CMakeLists.txt
+++ b/boot/mcuboot/CMakeLists.txt
@@ -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
diff --git a/boot/mcuboot/Kconfig b/boot/mcuboot/Kconfig
index f5c904a7a..271c986e7 100644
--- a/boot/mcuboot/Kconfig
+++ b/boot/mcuboot/Kconfig
@@ -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"
diff --git a/boot/mcuboot/Makefile b/boot/mcuboot/Makefile
index e6851be93..6c036147f 100644
--- a/boot/mcuboot/Makefile
+++ b/boot/mcuboot/Makefile
@@ -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 \

Reply via email to