Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions boot/mcuboot/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions boot/mcuboot/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions boot/mcuboot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
Loading