From owner-cvs-all@FreeBSD.ORG Mon Jun 23 07:46:13 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3861037B401; Mon, 23 Jun 2003 07:46:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C75A543FF3; Mon, 23 Jun 2003 07:46:12 -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 h5NEkC0U019570; Mon, 23 Jun 2003 07:46:12 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5NEkCuL019569; Mon, 23 Jun 2003 07:46:12 -0700 (PDT) Message-Id: <200306231446.h5NEkCuL019569@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 23 Jun 2003 07:46:12 -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/conf NOTES files src/share/man/man4 Makefile fatm.4 natm.4 natmip.4 src/sys/dev/fatm firmware.h if_fatm.c if_fatm_rate.h if_fatmreg.h if_fatmvar.h src/sys/modules/fatm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2003 14:46:13 -0000 harti 2003/06/23 07:46:12 PDT FreeBSD src repository Modified files: sys/modules Makefile sys/conf NOTES files share/man/man4 Makefile natm.4 natmip.4 Added files: share/man/man4 fatm.4 sys/dev/fatm firmware.h if_fatm.c if_fatm_rate.h if_fatmreg.h if_fatmvar.h sys/modules/fatm Makefile Log: This is a driver for Fore PCA200E cards that uses busdma and works on little endian and big endian and with 32 and 64 bit pointers. It already has the hooks to be used for HARP, NATM and ngATM. Revision Changes Path 1.210 +2 -0 src/share/man/man4/Makefile 1.1 +106 -0 src/share/man/man4/fatm.4 (new) 1.13 +1 -0 src/share/man/man4/natm.4 1.3 +1 -0 src/share/man/man4/natmip.4 1.1154 +5 -2 src/sys/conf/NOTES 1.797 +1 -0 src/sys/conf/files 1.1 +2393 -0 src/sys/dev/fatm/firmware.h (new) 1.1 +3083 -0 src/sys/dev/fatm/if_fatm.c (new) 1.1 +294 -0 src/sys/dev/fatm/if_fatm_rate.h (new) 1.1 +499 -0 src/sys/dev/fatm/if_fatmreg.h (new) 1.1 +390 -0 src/sys/dev/fatm/if_fatmvar.h (new) 1.331 +1 -0 src/sys/modules/Makefile 1.1 +19 -0 src/sys/modules/fatm/Makefile (new)