mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 14:46:49 +07:00
463d413cb7
The last update to the Ethernet HowTo (over 10 years ago) listed this: ------------------------ SEEQ 8005 Status: Obsolete, Driver Name: seeq8005 There is little information about the card included in the driver, and hence little information to be put here. If you have a question, you are probably best trying to e-mail the driver author as listed in the source. It was marked obsolete as of the 2.4 series kernels. ------------------------ If it was obsolete over a decade ago, the situation can not have improved with the passage of time, so let us act on that. Even with today's improved search engines, I was unable to locate any real meaningful information on the ISA implementation of this rare chip. There are ARM and SGI variants of the driver in tree, but they do not depend on the original x86 driver source or header file. We leave those non-x86 drivers to be deleted by the arch maintainers when they decide to expire those legacy platforms as a whole. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
#
|
|
# SEEQ device configuration
|
|
#
|
|
|
|
config NET_VENDOR_SEEQ
|
|
bool "SEEQ devices"
|
|
default y
|
|
depends on HAS_IOMEM
|
|
depends on (ARM && ARCH_ACORN) || SGI_HAS_SEEQ || EXPERIMENTAL
|
|
---help---
|
|
If you have a network (Ethernet) card belonging to this class, say Y
|
|
and read the Ethernet-HOWTO, available from
|
|
<http://www.tldp.org/docs.html#howto>.
|
|
|
|
Note that the answer to this question doesn't directly affect the
|
|
kernel: saying N will just cause the configurator to skip all
|
|
the questions about SEEQ devices. If you say Y, you will be asked for
|
|
your specific card in the following questions.
|
|
|
|
if NET_VENDOR_SEEQ
|
|
|
|
config ARM_ETHER3
|
|
tristate "Acorn/ANT Ether3 support"
|
|
depends on ARM && ARCH_ACORN
|
|
---help---
|
|
If you have an Acorn system with one of these network cards, you
|
|
should say Y to this option if you wish to use it with Linux.
|
|
|
|
config SGISEEQ
|
|
tristate "SGI Seeq ethernet controller support"
|
|
depends on SGI_HAS_SEEQ
|
|
---help---
|
|
Say Y here if you have an Seeq based Ethernet network card. This is
|
|
used in many Silicon Graphics machines.
|
|
|
|
endif # NET_VENDOR_SEEQ
|