:orphan: .. title:: ETH_NIC_MODEL .. option:: CONFIG_ETH_NIC_MODEL *(No prompt -- not directly user assignable.)* Type: ``string`` Help ==== Tells what Qemu network model to use. This value is given as a parameter to -nic qemu command line option. Help ==== Tells what Qemu network model to use. This value is given as a parameter to -nic qemu command line option. Help ==== Tells what Qemu network model to use. This value is given as a parameter to -nic qemu command line option. Direct dependencies =================== (\ :option:`ETH_E1000 ` && \ :option:`NET_L2_ETHERNET `) || (\ :option:`ETH_SMSC911X ` && \ :option:`NET_L2_ETHERNET `) || (\ :option:`ETH_STELLARIS ` && \ :option:`NET_L2_ETHERNET `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - "e1000" - "lan9118" - "stellaris" Kconfig definitions =================== .. highlight:: kconfig At ``drivers/ethernet/Kconfig.e1000:12`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:20`` → ``drivers/ethernet/Kconfig:50`` Menu path: (Top) → Device Drivers → Ethernet Drivers → Intel(R) PRO/1000 Gigabit Ethernet driver .. parsed-literal:: config ETH_NIC_MODEL string default "e1000" depends on \ :option:`ETH_E1000 ` && \ :option:`NET_L2_ETHERNET ` help Tells what Qemu network model to use. This value is given as a parameter to -nic qemu command line option. ---- At ``drivers/ethernet/Kconfig.smsc911x:9`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:20`` → ``drivers/ethernet/Kconfig:53`` Menu path: (Top) → Device Drivers → Ethernet Drivers → SMSC911x/9220 Ethernet driver .. parsed-literal:: config ETH_NIC_MODEL string default "lan9118" depends on \ :option:`ETH_SMSC911X ` && \ :option:`NET_L2_ETHERNET ` help Tells what Qemu network model to use. This value is given as a parameter to -nic qemu command line option. ---- At ``drivers/ethernet/Kconfig.stellaris:11`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:20`` → ``drivers/ethernet/Kconfig:55`` Menu path: (Top) → Device Drivers → Ethernet Drivers → Enable TI Stellaris MCU family ethernet driver. .. parsed-literal:: config ETH_NIC_MODEL string default "stellaris" depends on \ :option:`ETH_STELLARIS ` && \ :option:`NET_L2_ETHERNET ` help Tells what Qemu network model to use. This value is given as a parameter to -nic qemu command line option. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*