diff options
author | imp <imp@FreeBSD.org> | 2001-03-03 08:31:37 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-03-03 08:31:37 +0000 |
commit | c2257f6c8a69b4a7cae98128bd89f28f3893f3c5 (patch) | |
tree | 6a6e8077b17a02e0d83e4b1fad4660dd6562ccad /sys/modules/ed | |
parent | 5f89669270bed456c02457eab0709fc74466f733 (diff) | |
download | FreeBSD-src-c2257f6c8a69b4a7cae98128bd89f28f3893f3c5.zip FreeBSD-src-c2257f6c8a69b4a7cae98128bd89f28f3893f3c5.tar.gz |
Add support for Dlink DL10022 to the ed driver. This is a mii part
bolted to a ne-2000 chip. This is necessary for the NetGear FA-410TX
and other cards.
This also requires you add mii to your kernel if you have an ed driver
configured.
This code will result in a couple of timeout messages for ed on the
impacted cards. Additional work will be needed, but this does work
right now, and many people need these cards.
Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
Diffstat (limited to 'sys/modules/ed')
-rw-r--r-- | sys/modules/ed/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ed/Makefile b/sys/modules/ed/Makefile index 23dda90b..d8a622b 100644 --- a/sys/modules/ed/Makefile +++ b/sys/modules/ed/Makefile @@ -12,6 +12,6 @@ CFLAGS+= -DPC98 SRCS+= if_ed_isa.c .endif -SRCS+= opt_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h +SRCS+= opt_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h miibus_if.h .include <bsd.kmod.mk> |