:orphan: .. title:: CONFIG_SW_VECTOR_RELAY .. kconfig:: CONFIG_SW_VECTOR_RELAY CONFIG_SW_VECTOR_RELAY ###################### *Enable Software Vector Relay* Type: ``bool`` Help ==== .. code-block:: none When building a bootloader firmware this option adds a vector table relay handler and a vector relay table, to relay interrupts based on a vector table pointer. This is only required but not limited to Cortex-M Baseline CPUs with no hardware vector table relocation mechanisms (e.g. VTOR). Direct dependencies =================== (\ :kconfig:`ARMV6_M_ARMV8_M_BASELINE ` || \ :kconfig:`ARMV7_M_ARMV8_M_MAINLINE `) && \ :kconfig:`CPU_CORTEX_M ` && \ :kconfig:`ARM ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== At ``/arm/core/aarch32/cortex_m/Kconfig:309`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm/Kconfig:57`` → ``/arm/core/aarch32/Kconfig:294`` Menu path: (Top) → ARM Options → ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options .. code-block:: kconfig config SW_VECTOR_RELAY bool "Enable Software Vector Relay" depends on (ARMV6_M_ARMV8_M_BASELINE || ARMV7_M_ARMV8_M_MAINLINE) && CPU_CORTEX_M && ARM help When building a bootloader firmware this option adds a vector table relay handler and a vector relay table, to relay interrupts based on a vector table pointer. This is only required but not limited to Cortex-M Baseline CPUs with no hardware vector table relocation mechanisms (e.g. VTOR). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*