:orphan: .. title:: NET_SLIP_TAP .. option:: CONFIG_NET_SLIP_TAP *TAP SLIP driver* Type: ``bool`` Help ==== SLIP TAP support is necessary when testing with QEMU. The host needs to have tunslip6 with TAP support running in order to communicate via the SLIP driver. See net-tools project at https://github.com/zephyrproject-rtos/net-tools for more details. Direct dependencies =================== \ :option:`NET_QEMU_SLIP ` && \ :option:`NET_NATIVE ` && !\ :option:`NET_RAW_MODE ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :option:`QEMU_TARGET ` && !\ :option:`NET_TEST ` && !\ :option:`NET_L2_BT ` Symbols selected by this symbol =============================== - \ :option:`SLIP ` - \ :option:`UART_PIPE ` - \ :option:`UART_INTERRUPT_DRIVEN ` - \ :option:`SLIP_TAP ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/ip/Kconfig:569`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:87`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack .. parsed-literal:: config NET_SLIP_TAP bool "TAP SLIP driver" default y if \ :option:`QEMU_TARGET ` && !\ :option:`NET_TEST ` && !\ :option:`NET_L2_BT ` select \ :option:`SLIP ` select \ :option:`UART_PIPE ` select \ :option:`UART_INTERRUPT_DRIVEN ` select \ :option:`SLIP_TAP ` depends on \ :option:`NET_QEMU_SLIP ` && \ :option:`NET_NATIVE ` && !\ :option:`NET_RAW_MODE ` && \ :option:`NETWORKING ` help SLIP TAP support is necessary when testing with QEMU. The host needs to have tunslip6 with TAP support running in order to communicate via the SLIP driver. See net-tools project at https://github.com/zephyrproject-rtos/net-tools for more details. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*