mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 04:21:56 +00:00
Migrate from "legacy" PCI support (drivers/pci) to new PCI(e) support. The e1000 driver is merely for testing with QEMU and so should not be a model for the use of PCI(e) functions. Consult instead "real-world" PCI(e) drivers like the NS16550 UART (drivers/serial/uart_ns16550.c). Signed-off-by: Charles Youse <charles.youse@intel.com>
23 lines
512 B
Plaintext
23 lines
512 B
Plaintext
# Kconfig - Intel(R) PRO/1000 Gigabit Ethernet driver configuration options
|
|
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig ETH_E1000
|
|
bool "Intel(R) PRO/1000 Gigabit Ethernet driver"
|
|
depends on PCIE
|
|
help
|
|
Enable Intel(R) PRO/1000 Gigabit Ethernet driver.
|
|
|
|
# Hidden option
|
|
config ETH_NIC_MODEL
|
|
string
|
|
default "e1000"
|
|
depends on ETH_E1000
|
|
help
|
|
Tells what Qemu network model to use. This value is given as
|
|
a parameter to -nic qemu command line option.
|