From a07bd003bf2f89b58814214b4d106bd4600a97cf Mon Sep 17 00:00:00 2001 From: Bill Paul Date: Fri, 10 Sep 2004 20:57:46 +0000 Subject: Add device driver support for the VIA Networking Technologies VT6122 gigabit ethernet chip and integrated 10/100/1000 copper PHY. The vge driver has been added to GENERIC for i386, pc98 and amd64, but not to sparc or ia64 since I don't have the ability to test it there. The vge(4) driver supports VLANs, checksum offload and jumbo frames. Also added the lge(4) and nge(4) drivers to GENERIC for i386 and pc98 since I was in the neighborhood. There's no reason to leave them out anymore. --- sys/modules/Makefile | 1 + sys/modules/vge/Makefile | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 sys/modules/vge/Makefile (limited to 'sys/modules') diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 207ca2842f18..1aae7c64f623 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -240,6 +240,7 @@ SUBDIR= ${_3dfx} \ uvisor \ uvscom \ ${_vesa} \ + vge \ vinum \ vpo \ vr \ diff --git a/sys/modules/vge/Makefile b/sys/modules/vge/Makefile new file mode 100644 index 000000000000..8569f6831d60 --- /dev/null +++ b/sys/modules/vge/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/vge + +KMOD= if_vge +SRCS= if_vge.c miibus_if.h opt_bdg.h device_if.h bus_if.h pci_if.h + +.include -- cgit v1.3