:orphan: .. title:: choice: Qemu networking .. _choice_567: .. describe:: choice: Qemu networking *Qemu networking* Type: ``bool`` Help ==== .. code-block:: none Can be used to select how the network connectivity is established from inside qemu to host system. This can be done either via serial connection (SLIP) or via Qemu ethernet driver. Direct dependencies =================== \ :kconfig:`QEMU_TARGET ` && !\ :kconfig:`NET_RAW_MODE ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - \ :kconfig:`NET_QEMU_PPP ` if \ :kconfig:`NET_PPP ` - \ :kconfig:`NET_QEMU_SLIP ` Choice options ============== - \ :kconfig:`NET_QEMU_SLIP ` - \ :kconfig:`NET_QEMU_PPP ` - \ :kconfig:`NET_QEMU_ETHERNET ` - \ :kconfig:`NET_QEMU_USER ` Kconfig definition ================== At ``/net/ip/Kconfig:64`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack .. code-block:: kconfig choice bool "Qemu networking" default NET_QEMU_PPP if NET_PPP default NET_QEMU_SLIP depends on QEMU_TARGET && !NET_RAW_MODE && NETWORKING help Can be used to select how the network connectivity is established from inside qemu to host system. This can be done either via serial connection (SLIP) or via Qemu ethernet driver. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*