From owner-svn-src-head@FreeBSD.ORG Mon Nov 3 04:13:28 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A5E11065676; Mon, 3 Nov 2008 04:13:28 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 183088FC0C; Mon, 3 Nov 2008 04:13:28 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mA34DRP4056210; Mon, 3 Nov 2008 04:13:27 GMT (envelope-from scottl@svn.freebsd.org) Received: (from scottl@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mA34DROB056208; Mon, 3 Nov 2008 04:13:27 GMT (envelope-from scottl@svn.freebsd.org) Message-Id: <200811030413.mA34DROB056208@svn.freebsd.org> From: Scott Long Date: Mon, 3 Nov 2008 04:13:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r184577 - in head/sys/modules/amr: . amr_cam X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Nov 2008 04:13:28 -0000 Author: scottl Date: Mon Nov 3 04:13:27 2008 New Revision: 184577 URL: http://svn.freebsd.org/changeset/base/184577 Log: Add amr_cam module directory that was missed in the previous commit. Added: head/sys/modules/amr/amr_cam/ head/sys/modules/amr/amr_cam/Makefile (contents, props changed) Modified: head/sys/modules/amr/Makefile Modified: head/sys/modules/amr/Makefile ============================================================================== --- head/sys/modules/amr/Makefile Mon Nov 3 03:18:29 2008 (r184576) +++ head/sys/modules/amr/Makefile Mon Nov 3 04:13:27 2008 (r184577) @@ -10,9 +10,6 @@ SUBDIR+= amr_linux KMOD= amr SRCS= amr.c amr_pci.c amr_disk.c device_if.h bus_if.h pci_if.h -# SCSI passthrough support for non-disk devices -#SRCS+= amr_cam.c opt_cam.h opt_scsi.h - # Enable a questionable optimisation for newer adapters #CFLAGS+= -DAMR_QUARTZ_GOFASTER Added: head/sys/modules/amr/amr_cam/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/amr/amr_cam/Makefile Mon Nov 3 04:13:27 2008 (r184577) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/amr + +KMOD= amr_cam +SRCS= amr_cam.c device_if.h bus_if.h +SRCS+= opt_cam.h opt_scsi.h + +.include