summaryrefslogtreecommitdiffstats
path: root/sys/modules
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2001-07-23 20:44:54 +0000
committerwpaul <wpaul@FreeBSD.org>2001-07-23 20:44:54 +0000
commit08feeb2436d8817c951b188d7f86bd0dec292b03 (patch)
treec549b46c4b5d5ad8dfaa85655b5162f7e3b35556 /sys/modules
parent2a3094bdaea54e1348aeb6bc03513ff90eb76d56 (diff)
downloadFreeBSD-src-08feeb2436d8817c951b188d7f86bd0dec292b03.zip
FreeBSD-src-08feeb2436d8817c951b188d7f86bd0dec292b03.tar.gz
You were knocked senseless by the Boomerang, spun around by the Cyclone,
blown over by the Hurricane and had a house dropped on you by the Tornado. Now it's time to have your parade rained on by... the Typhoon! This commit adds driver support for 3Com 3cR990 10/100 ethernet adapters based on the Typhoon I and Typhoon II chipsets. This is actually a port of the OpenBSD driver with many hacks by me. No Virginia, there isn't any support for the hardware crypto yet. However there is support for TCP/IP checksum offload and VLANs. Special thanks go to Jason Wright, Aaron Campbell and Theo de Raadt for squeezing enough info out of 3Com to get this written, and for doing most of the hard work. Manual page is included. Compiled as a module and included in GENERIC.
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile1
-rw-r--r--sys/modules/txp/Makefile12
2 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 59d3d67..407b42a 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -78,6 +78,7 @@ SUBDIR= 3dfx \
tl \
twe \
tx \
+ txp \
udbp \
ugen \
uhid \
diff --git a/sys/modules/txp/Makefile b/sys/modules/txp/Makefile
new file mode 100644
index 0000000..adc6625
--- /dev/null
+++ b/sys/modules/txp/Makefile
@@ -0,0 +1,12 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/txp
+
+KMOD= if_txp
+SRCS= if_txp.c opt_bdg.h device_if.h bus_if.h pci_if.h
+CLEANFILES= vlan.h
+
+vlan.h:
+ touch vlan.h
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud