From owner-cvs-src@FreeBSD.ORG Sun Apr 20 12:05:35 2003 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 13C5037B401; Sun, 20 Apr 2003 12:05:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5E6043FA3; Sun, 20 Apr 2003 12:05:34 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3KJ5Y0U051297; Sun, 20 Apr 2003 12:05:34 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3KJ5Yds051296; Sun, 20 Apr 2003 12:05:34 -0700 (PDT) Message-Id: <200304201905.h3KJ5Yds051296@repoman.freebsd.org> From: Bill Paul Date: Sun, 20 Apr 2003 12:05:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules Makefile src/sys/modules/axe Makefile src/sys/modules/netgraph Makefile src/sys/conf files src/sys/i386/conf GENERIC src/sys/sparc64/conf GENERIC src/sys/alpha/conf GENERIC src/sys/pc98/conf GENERIC ... 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: Sun, 20 Apr 2003 19:05:35 -0000 wpaul 2003/04/20 12:05:34 PDT FreeBSD src repository Modified files: sys/modules Makefile sys/modules/netgraph Makefile sys/conf files sys/i386/conf GENERIC sys/sparc64/conf GENERIC sys/alpha/conf GENERIC sys/pc98/conf GENERIC sys/dev/usb usbdevs share/man/man4 Makefile usr.sbin/sysinstall devices.c Added files: sys/modules/axe Makefile sys/dev/usb if_axe.c if_axereg.h share/man/man4 axe.4 Log: Add device driver support for the ASIX Electronics AX88172 USB 2.0 ethernet controller. The driver has been tested with the LinkSys USB200M adapter. I know for a fact that there are other devices out there with this chip but don't have all the USB vendor/device IDs. Note: I'm not sure if this will force the driver to end up in the install kernel image or not. Special magic needs to be done to exclude it to keep the boot floppies from bloating again, someone please advise. Revision Changes Path 1.198 +1 -0 src/share/man/man4/Makefile 1.1 +144 -0 src/share/man/man4/axe.4 (new) 1.158 +1 -0 src/sys/alpha/conf/GENERIC 1.785 +1 -0 src/sys/conf/files 1.1 +1192 -0 src/sys/dev/usb/if_axe.c (new) 1.1 +178 -0 src/sys/dev/usb/if_axereg.h (new) 1.119 +4 -0 src/sys/dev/usb/usbdevs 1.381 +1 -0 src/sys/i386/conf/GENERIC 1.319 +1 -0 src/sys/modules/Makefile 1.1 +10 -0 src/sys/modules/axe/Makefile (new) 1.28 +1 -0 src/sys/modules/netgraph/Makefile 1.231 +1 -0 src/sys/pc98/conf/GENERIC 1.53 +1 -0 src/sys/sparc64/conf/GENERIC 1.149 +1 -0 src/usr.sbin/sysinstall/devices.c