:orphan: .. title:: CONFIG_BOOTLOADER_ESP_IDF .. kconfig:: CONFIG_BOOTLOADER_ESP_IDF CONFIG_BOOTLOADER_ESP_IDF ######################### *ESP-IDF bootloader support* Type: ``bool`` Help ==== .. code-block:: none This option will trigger the compilation of the ESP-IDF bootloader inside the build folder. At flash time, the bootloader will be flashed with the zephyr image Direct dependencies =================== (\ :kconfig:`SOC_ESP32 ` || \ :kconfig:`SOC_ESP32S2 ` || \ :kconfig:`SOC_ESP32C3 `) && !\ :kconfig:`BOOTLOADER_MCUBOOT ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``Kconfig.zephyr:740`` Included via ``Kconfig:8`` Menu path: (Top) → Boot Options .. code-block:: kconfig config BOOTLOADER_ESP_IDF bool "ESP-IDF bootloader support" default y depends on (SOC_ESP32 || SOC_ESP32S2 || SOC_ESP32C3) && !BOOTLOADER_MCUBOOT help This option will trigger the compilation of the ESP-IDF bootloader inside the build folder. At flash time, the bootloader will be flashed with the zephyr image *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*