From owner-cvs-src@FreeBSD.ORG Fri Sep 10 20:57:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1036016A4CE; Fri, 10 Sep 2004 20:57:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02B7B43D31; Fri, 10 Sep 2004 20:57:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8AKvkcD068460; Fri, 10 Sep 2004 20:57:46 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8AKvkbL068459; Fri, 10 Sep 2004 20:57:46 GMT (envelope-from wpaul) Message-Id: <200409102057.i8AKvkbL068459@repoman.freebsd.org> From: Bill Paul Date: Fri, 10 Sep 2004 20:57:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc devd.conf src/sys/modules Makefile src/sys/modules/vge Makefile src/sys/dev/vge if_vge.c if_vgereg.h if_vgevar.h src/sys/dev/mii ciphy.c ciphyreg.h miidevs src/sys/conf files src/sys/i386/conf GENERIC src/sys/pc98/conf ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Sep 2004 20:57:47 -0000 wpaul 2004-09-10 20:57:46 UTC FreeBSD src repository Modified files: etc devd.conf sys/modules Makefile sys/dev/mii miidevs sys/conf files sys/i386/conf GENERIC sys/pc98/conf GENERIC sys/amd64/conf GENERIC usr.sbin/sysinstall devices.c Added files: sys/modules/vge Makefile sys/dev/vge if_vge.c if_vgereg.h if_vgevar.h sys/dev/mii ciphy.c ciphyreg.h Log: 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. Revision Changes Path 1.17 +2 -1 src/etc/devd.conf 1.424 +3 -0 src/sys/amd64/conf/GENERIC 1.952 +2 -0 src/sys/conf/files 1.1 +433 -0 src/sys/dev/mii/ciphy.c (new) 1.1 +351 -0 src/sys/dev/mii/ciphyreg.h (new) 1.28 +6 -0 src/sys/dev/mii/miidevs 1.1 +2445 -0 src/sys/dev/vge/if_vge.c (new) 1.1 +697 -0 src/sys/dev/vge/if_vgereg.h (new) 1.1 +174 -0 src/sys/dev/vge/if_vgevar.h (new) 1.417 +3 -0 src/sys/i386/conf/GENERIC 1.400 +1 -0 src/sys/modules/Makefile 1.1 +8 -0 src/sys/modules/vge/Makefile (new) 1.259 +3 -0 src/sys/pc98/conf/GENERIC 1.157 +1 -0 src/usr.sbin/sysinstall/devices.c