:orphan: .. title:: RESET_VECTOR_IN_BOOTLOADER .. option:: CONFIG_RESET_VECTOR_IN_BOOTLOADER *Link reset vector into bootloader* Type: ``bool`` Help ==== .. code-block:: none Reset vector code can be either linked in the bootloader or the application binary. Select "y" to link it into the bootloader. Direct dependencies =================== \ :option:`XTENSA_RESET_VECTOR ` && \ :option:`XTENSA ` *(Includes any dependencies from ifs and menus.)* Default ======= - n Kconfig definition ================== At ``/xtensa/Kconfig:52`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``/Kconfig:12`` Menu path: (Top) → XTENSA Options → Build reset vector code .. code-block:: kconfig config RESET_VECTOR_IN_BOOTLOADER bool "Link reset vector into bootloader" default n depends on XTENSA_RESET_VECTOR && XTENSA help Reset vector code can be either linked in the bootloader or the application binary. Select "y" to link it into the bootloader. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*