:orphan: .. title:: CONFIG_MCUBOOT_GENERATE_CONFIRMED_IMAGE .. kconfig:: CONFIG_MCUBOOT_GENERATE_CONFIRMED_IMAGE CONFIG_MCUBOOT_GENERATE_CONFIRMED_IMAGE ####################################### *Also generate a padded, confirmed image* Type: ``bool`` Help ==== .. code-block:: none The signed, padded, and confirmed binaries are placed in the build directory at zephyr/zephyr.signed.confirmed.bin and zephyr/zephyr.signed.confirmed.hex. The file names can be customized with CONFIG_KERNEL_BIN_NAME. The existence of bin and hex files depends on CONFIG_BUILD_OUTPUT_BIN and CONFIG_BUILD_OUTPUT_HEX. Direct dependencies =================== (\ :kconfig:`BOOTLOADER_MCUBOOT ` && \ :kconfig:`SOC_ESP32C3 `) || (\ :kconfig:`BOOTLOADER_MCUBOOT ` && \ :kconfig:`SOC_ESP32 `) || \ :kconfig:`BOOTLOADER_MCUBOOT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Kconfig definitions =================== At ``/riscv/esp32c3/Kconfig.defconfig:19`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` Menu path: (Top) .. code-block:: kconfig config MCUBOOT_GENERATE_CONFIRMED_IMAGE bool default y depends on BOOTLOADER_MCUBOOT && SOC_ESP32C3 ---- At ``/xtensa/esp32/Kconfig.defconfig:18`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` Menu path: (Top) .. code-block:: kconfig config MCUBOOT_GENERATE_CONFIRMED_IMAGE bool default y depends on BOOTLOADER_MCUBOOT && SOC_ESP32 ---- At ``Kconfig.zephyr:727`` Included via ``Kconfig:8`` Menu path: (Top) → Boot Options → MCUboot bootloader support .. code-block:: kconfig config MCUBOOT_GENERATE_CONFIRMED_IMAGE bool "Also generate a padded, confirmed image" depends on BOOTLOADER_MCUBOOT help The signed, padded, and confirmed binaries are placed in the build directory at zephyr/zephyr.signed.confirmed.bin and zephyr/zephyr.signed.confirmed.hex. The file names can be customized with CONFIG_KERNEL_BIN_NAME. The existence of bin and hex files depends on CONFIG_BUILD_OUTPUT_BIN and CONFIG_BUILD_OUTPUT_HEX. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*