Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,12 @@ This configuration is the same as the ``nsh`` configuration, but it generates th
image in a format that can be used by MCUboot. It also makes the ``make bootloader`` command to
build the MCUboot bootloader image using the Espressif HAL.

When ``mcuboot`` is used as bootloader, this board uses the
``board_boot_image()`` implementation in the chain-boot path through
``boardctl(BOARDIOC_BOOT_IMAGE)``.
See :doc:`/applications/boot/mcuboot/index` for general MCUboot boot flow
details and platform requirements.

mcuboot_update_agent
--------------------

Expand Down
4 changes: 4 additions & 0 deletions boards/xtensa/esp32/common/src/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ ifeq ($(CONFIG_ETC_ROMFS),y)
RCSRCS = etc/init.d/rc.sysinit etc/init.d/rcS
endif

ifeq ($(CONFIG_BOARDCTL_BOOT_IMAGE),y)
CSRCS += esp32_boot_image.c
endif

DEPPATH += --dep-path src
VPATH += :src
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src$(DELIM)board$(DELIM)src
Expand Down
Loading
Loading