From owner-cvs-src@FreeBSD.ORG Thu Jun 12 07:28:33 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 4353937B401; Thu, 12 Jun 2003 07:28:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D04AB43FA3; Thu, 12 Jun 2003 07:28:32 -0700 (PDT) (envelope-from harti@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 h5CESW0U028765; Thu, 12 Jun 2003 07:28:32 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5CESWtF028764; Thu, 12 Jun 2003 07:28:32 -0700 (PDT) Message-Id: <200306121428.h5CESWtF028764@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Jun 2003 07:28:32 -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/share/man/man4 Makefile utopia.4 src/share/man/man9 Makefile utopia.9 src/include Makefile src/share/man/man7 hier.7 src/etc/mtree BSD.include.dist... 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: Thu, 12 Jun 2003 14:28:33 -0000 harti 2003/06/12 07:28:32 PDT FreeBSD src repository Modified files: sys/modules Makefile share/man/man4 Makefile share/man/man9 Makefile include Makefile share/man/man7 hier.7 etc/mtree BSD.include.dist Added files: share/man/man4 utopia.4 share/man/man9 utopia.9 sys/modules/utopia Makefile sys/dev/utopia idtphy.h suni.h utopia.c utopia.h Log: This is a driver for the physical layer chips used in ATM interfaces. It currently supports the PMC Sierra Lite, Ultra and 622 chips and the IDT 77105. The driver handles media options and state in a consistent manner for ATM drivers. The next commit to the midway driver will make it use utopia. Revision Changes Path 1.67 +2 -0 src/etc/mtree/BSD.include.dist 1.198 +1 -1 src/include/Makefile 1.207 +1 -0 src/share/man/man4/Makefile 1.1 +131 -0 src/share/man/man4/utopia.4 (new) 1.85 +4 -0 src/share/man/man7/hier.7 1.195 +1 -1 src/share/man/man9/Makefile 1.1 +305 -0 src/share/man/man9/utopia.9 (new) 1.1 +119 -0 src/sys/dev/utopia/idtphy.h (new) 1.1 +1515 -0 src/sys/dev/utopia/suni.h (new) 1.1 +1082 -0 src/sys/dev/utopia/utopia.c (new) 1.1 +175 -0 src/sys/dev/utopia/utopia.h (new) 1.326 +1 -0 src/sys/modules/Makefile 1.1 +8 -0 src/sys/modules/utopia/Makefile (new)