From owner-cvs-src@FreeBSD.ORG Sun Sep 11 01:17:07 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 BDBFA16A41F; Sun, 11 Sep 2005 01:17:07 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E59E043D49; Sun, 11 Sep 2005 01:17:04 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j8B1H3gG074349; Sat, 10 Sep 2005 18:17:04 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j8B1H2jF074176; Sat, 10 Sep 2005 18:17:02 -0700 (PDT) (envelope-from obrien) Date: Sat, 10 Sep 2005 18:17:02 -0700 From: "David O'Brien" To: Nate Lawson Message-ID: <20050911011702.GA42159@dragon.NUXI.org> References: <20050911005213.5C5EB16A478@hub.freebsd.org> <43238229.4040809@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <43238229.4040809@root.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files kern.pre.mk src/sys/dev/twa tw_osl_cam.c tw_osl_freebsd.c tw_osl_includes.h tw_osl_ioctl.h tw_osl_share.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2005 01:17:07 -0000 On Sat, Sep 10, 2005 at 06:02:33PM -0700, Nate Lawson wrote: > David E. O'Brien wrote: > >obrien 2005-09-11 00:52:05 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf files kern.pre.mk > > sys/dev/twa tw_osl_cam.c tw_osl_freebsd.c > > tw_osl_includes.h tw_osl_ioctl.h > > tw_osl_share.h > > Log: > > Don't pollute the entire kernel build with -I$S/dev/twa. > > > > Revision Changes Path > > 1.1043 +10 -5 src/sys/conf/files > > 1.66 +0 -3 src/sys/conf/kern.pre.mk > > 1.4 +1 -1 src/sys/dev/twa/tw_osl_cam.c > > 1.2 +4 -4 src/sys/dev/twa/tw_osl_freebsd.c > > 1.2 +4 -4 src/sys/dev/twa/tw_osl_includes.h > > 1.2 +2 -2 src/sys/dev/twa/tw_osl_ioctl.h > > 1.3 +1 -1 src/sys/dev/twa/tw_osl_share.h > > > > > >Index: src/sys/conf/files > >diff -u src/sys/conf/files:1.1042 src/sys/conf/files:1.1043 > >--- src/sys/conf/files:1.1042 Fri Aug 26 12:48:34 2005 > >+++ src/sys/conf/files Sun Sep 11 00:52:04 2005 > >@@ -859,11 +859,16 @@ > > dev/syscons/warp/warp_saver.c optional warp_saver > > dev/tdfx/tdfx_pci.c optional tdfx pci > > dev/trm/trm.c optional trm > >-dev/twa/tw_cl_fwimg.c optional twa > >-dev/twa/tw_cl_init.c optional twa > >-dev/twa/tw_cl_intr.c optional twa > >-dev/twa/tw_cl_io.c optional twa > >-dev/twa/tw_cl_misc.c optional twa > >+dev/twa/tw_cl_fwimg.c optional twa \ > >+ compile-with "${NORMAL_C} -I$S/dev/twa" > >+dev/twa/tw_cl_init.c optional twa \ > >+ compile-with "${NORMAL_C} -I$S/dev/twa" > >+dev/twa/tw_cl_intr.c optional twa \ > >+ compile-with "${NORMAL_C} -I$S/dev/twa" > >+dev/twa/tw_cl_io.c optional twa \ > >+ compile-with "${NORMAL_C} -I$S/dev/twa" > >+dev/twa/tw_cl_misc.c optional twa \ > >+ compile-with "${NORMAL_C} -I$S/dev/twa" > > dev/twa/tw_osl_cam.c optional twa > > dev/twa/tw_osl_freebsd.c optional twa > > dev/twe/twe.c optional twe > > Is that -I flag needed now that you fixed the C files to use ? I only changed the tw_osl_* files (OS layer). I'd love to fix the tw_cl_ (common layer) files also, but took the conservative approach for the moment. -- -- David (obrien@FreeBSD.org)