:orphan: .. title:: EXECUTE_XOR_WRITE .. option:: CONFIG_EXECUTE_XOR_WRITE *Enable W^X for memory partitions* Type: ``bool`` Help ==== When enabled, will enforce that a writable page isn't executable and vice versa. This might not be acceptable in all scenarios, so this option is given for those unafraid of shooting themselves in the foot. If unsure, say Y. Direct dependencies =================== \ :option:`USERSPACE ` && \ :option:`ARCH_HAS_EXECUTABLE_PAGE_BIT ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``kernel/Kconfig:663`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:30`` Menu path: (Top) → General Kernel Options → Security Options .. parsed-literal:: config EXECUTE_XOR_WRITE bool "Enable W^X for memory partitions" default y depends on \ :option:`USERSPACE ` && \ :option:`ARCH_HAS_EXECUTABLE_PAGE_BIT ` help When enabled, will enforce that a writable page isn't executable and vice versa. This might not be acceptable in all scenarios, so this option is given for those unafraid of shooting themselves in the foot. If unsure, say Y. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*