:orphan: .. title:: BOARD_NATIVE_POSIX_32BIT .. option:: CONFIG_BOARD_NATIVE_POSIX_32BIT *Native POSIX for 32-bit host* Type: ``bool`` Help ==== Will produce a console Linux process which can be executed natively as a 32-bit executable. It provides some minimal needed models: An interrupt controller, timer (system tick), and redirects kernel prints to stdout. Direct dependencies =================== \ :option:`SOC_POSIX ` && \ :ref:` ` *(Includes any dependencies from ifs and menus.)* Symbols selected by this symbol =============================== - \ :option:`BOARD_NATIVE_POSIX ` Kconfig definition ================== .. highlight:: kconfig At ``boards/posix/native_posix/Kconfig.board:3`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` → ``boards/Kconfig:22`` Menu path: (Top) → Board Selection .. parsed-literal:: config BOARD_NATIVE_POSIX_32BIT bool "Native POSIX for 32-bit host" select \ :option:`BOARD_NATIVE_POSIX ` depends on \ :option:`SOC_POSIX ` && \ :ref:` ` help Will produce a console Linux process which can be executed natively as a 32-bit executable. It provides some minimal needed models: An interrupt controller, timer (system tick), and redirects kernel prints to stdout. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*