:orphan: .. title:: CONFIG_ETH_QEMU_IFACE_NAME .. kconfig:: CONFIG_ETH_QEMU_IFACE_NAME CONFIG_ETH_QEMU_IFACE_NAME ########################## *Network interface name for QEMU* Type: ``string`` Help ==== .. code-block:: none The network interface name for QEMU. This value is given as a parameter to -nic qemu command line option. The network interface must be created before starting QEMU. The net-setup.sh script from net-tools project can be used to create the network interface. Direct dependencies =================== \ :kconfig:`NET_QEMU_ETHERNET ` && \ :kconfig:`NET_L2_ETHERNET ` *(Includes any dependencies from ifs and menus.)* Default ======= - "zeth" Kconfig definition ================== At ``/ethernet/Kconfig:24`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:20`` Menu path: (Top) → Device Drivers → Ethernet Drivers .. code-block:: kconfig config ETH_QEMU_IFACE_NAME string "Network interface name for QEMU" default "zeth" depends on NET_QEMU_ETHERNET && NET_L2_ETHERNET help The network interface name for QEMU. This value is given as a parameter to -nic qemu command line option. The network interface must be created before starting QEMU. The net-setup.sh script from net-tools project can be used to create the network interface. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*