:orphan: .. title:: XIP .. option:: CONFIG_XIP *Execute in place* Type: ``bool`` Help ==== This option allows the kernel to operate with its text and read-only sections residing in ROM (or similar read-only memory). Not all boards support this option so it must be used with care; you must also supply a linker command file when building your image. Enabling this option increases both the code and data footprint of the image. Default ======= - n Symbols that select this symbol =============================== - \ :option:`SOC_SERIES_SAME70 ` - \ :option:`SOC_SERIES_SAMV71 ` - \ :option:`SOC_SERIES_NRF51X ` - \ :option:`SOC_SERIES_NRF52X ` - \ :option:`SOC_SERIES_NRF53X ` - \ :option:`SOC_SERIES_NRF91X ` - \ :option:`SOC_OPENISA_RV32M1_RISCV32 ` - \ :option:`SOC_ARM_DESIGNSTART_FPGA_CORTEX_M1 ` - \ :option:`SOC_ARM_DESIGNSTART_FPGA_CORTEX_M3 ` Symbols that imply this symbol ============================== - \ :option:`CPU_CORTEX_M ` - \ :option:`ARC ` - \ :option:`NIOS2 ` - \ :option:`RISCV ` Kconfig definitions =================== .. highlight:: kconfig At ``soc/arc/snps_nsim/Kconfig.defconfig:12`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.defconfig:1`` Menu path: (Top) .. parsed-literal:: config XIP bool default n depends on \ :option:`SOC_NSIM ` ---- At ``kernel/Kconfig:601`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:30`` Menu path: (Top) → General Kernel Options .. parsed-literal:: config XIP bool "Execute in place" help This option allows the kernel to operate with its text and read-only sections residing in ROM (or similar read-only memory). Not all boards support this option so it must be used with care; you must also supply a linker command file when building your image. Enabling this option increases both the code and data footprint of the image. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*