diff --git a/boot/mcuboot/CMakeLists.txt b/boot/mcuboot/CMakeLists.txt index 2ea3e713722..2fb70baef29 100644 --- a/boot/mcuboot/CMakeLists.txt +++ b/boot/mcuboot/CMakeLists.txt @@ -45,6 +45,7 @@ if(CONFIG_BOOT_MCUBOOT) set(SRCS mcuboot/boot/bootutil/src/boot_record.c + mcuboot/boot/bootutil/src/bootutil_img_hash.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 f5c904a7a4b..a1cce667f9f 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 "8a07053d42e592c85cb35b79c4de1b7749943387" ---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 e6851be9310..a70ec4978eb 100644 --- a/boot/mcuboot/Makefile +++ b/boot/mcuboot/Makefile @@ -44,6 +44,7 @@ endif CFLAGS += -Wno-undef -Wno-unused-but-set-variable CSRCS := $(MCUBOOT_UNPACK)/boot/bootutil/src/boot_record.c \ + $(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_img_hash.c \ $(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_misc.c \ $(MCUBOOT_UNPACK)/boot/bootutil/src/bootutil_public.c \ $(MCUBOOT_UNPACK)/boot/bootutil/src/caps.c \