:orphan: .. title:: CONFIG_NATIVE_POSIX_CONSOLE .. kconfig:: CONFIG_NATIVE_POSIX_CONSOLE CONFIG_NATIVE_POSIX_CONSOLE ########################### *Use the host terminal for console* Type: ``bool`` Help ==== .. code-block:: none Use the host terminal (where the native_posix binary was launched) for the Zephyr console Direct dependencies =================== (\ :kconfig:`CONSOLE ` && \ :kconfig:`BOARD_NATIVE_POSIX `) || (\ :kconfig:`ARCH_POSIX ` && \ :kconfig:`CONSOLE `) *(Includes any dependencies from ifs and menus.)* Default ======= - y if !\ :kconfig:`SERIAL ` Symbols selected by this symbol =============================== - \ :kconfig:`CONSOLE_HAS_DRIVER ` Symbols that select this symbol =============================== - \ :kconfig:`BOARD_NATIVE_POSIX ` Kconfig definitions =================== At ``/posix/native_posix/Kconfig.defconfig:56`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config NATIVE_POSIX_CONSOLE bool default y if !SERIAL depends on CONSOLE && BOARD_NATIVE_POSIX ---- At ``/console/Kconfig:264`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers .. code-block:: kconfig config NATIVE_POSIX_CONSOLE bool "Use the host terminal for console" select CONSOLE_HAS_DRIVER depends on ARCH_POSIX && CONSOLE help Use the host terminal (where the native_posix binary was launched) for the Zephyr console *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*