:orphan: .. title:: RESET_VECTOR_IN_BOOTLOADER .. option:: CONFIG_RESET_VECTOR_IN_BOOTLOADER *Link reset vector into bootloader* Type: ``bool`` Help ==== 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 ================== .. highlight:: kconfig At ``arch/xtensa/Kconfig:52`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → XTENSA Options → Build reset vector code .. parsed-literal:: config RESET_VECTOR_IN_BOOTLOADER bool "Link reset vector into bootloader" default n depends on \ :option:`XTENSA_RESET_VECTOR ` && \ :option:`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.)*