:orphan: .. title:: ETH_QEMU_IFACE_NAME .. option:: CONFIG_ETH_QEMU_IFACE_NAME *Network interface name for QEMU* Type: ``string`` 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. Direct dependencies =================== \ :option:`NET_QEMU_ETHERNET ` && \ :option:`NET_L2_ETHERNET ` *(Includes any dependencies from ifs and menus.)* Default ======= - "zeth" Kconfig definition ================== .. highlight:: kconfig At ``drivers/ethernet/Kconfig:24`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:20`` Menu path: (Top) → Device Drivers → Ethernet Drivers .. parsed-literal:: config ETH_QEMU_IFACE_NAME string "Network interface name for QEMU" default "zeth" depends on \ :option:`NET_QEMU_ETHERNET ` && \ :option:`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.)*