:orphan: .. title:: CONFIG_ETH_NATIVE_POSIX .. kconfig:: CONFIG_ETH_NATIVE_POSIX CONFIG_ETH_NATIVE_POSIX ####################### *Native Posix Ethernet driver* Type: ``bool`` Help ==== .. code-block:: none Enable native posix ethernet driver. Note, this driver is run inside a process in your host system. Direct dependencies =================== (\ :kconfig:`NETWORKING ` && \ :kconfig:`BOARD_NATIVE_POSIX `) || (\ :kconfig:`ARCH_POSIX ` && \ :kconfig:`NET_L2_ETHERNET `) *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :kconfig:`NET_L2_ETHERNET ` Kconfig definitions =================== At ``/posix/native_posix/Kconfig.defconfig:23`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config ETH_NATIVE_POSIX bool default y if NET_L2_ETHERNET depends on NETWORKING && BOARD_NATIVE_POSIX ---- At ``/ethernet/Kconfig.native_posix:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:20`` → ``/ethernet/Kconfig:54`` Menu path: (Top) → Device Drivers → Ethernet Drivers .. code-block:: kconfig menuconfig ETH_NATIVE_POSIX bool "Native Posix Ethernet driver" depends on ARCH_POSIX && NET_L2_ETHERNET help Enable native posix ethernet driver. Note, this driver is run inside a process in your host system. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*