From owner-freebsd-current@FreeBSD.ORG Sat Oct 23 15:01:29 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB82A16A4CE; Sat, 23 Oct 2004 15:01:29 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 846EF43D49; Sat, 23 Oct 2004 15:01:27 +0000 (GMT) (envelope-from scottl@freebsd.org) Received: from [192.168.254.11] (junior-wifi.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i9NF2AYY066028; Sat, 23 Oct 2004 09:02:10 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <417A71E2.1000606@freebsd.org> Date: Sat, 23 Oct 2004 08:59:46 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040929 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <417960C2.8040007@freebsd.org> <20041022194008.GA23778@odin.ac.hmc.edu> <41796396.5070804@freebsd.org> <41796D6D.7000108@freebsd.org> <41799315.70201@elischer.org> <41799396.9090307@freebsd.org> <20041023082926.GE45235@ip.net.ua> <417A17E0.7000800@freebsd.org> <20041023125729.GA46216@ip.net.ua> In-Reply-To: <20041023125729.GA46216@ip.net.ua> X-Enigmail-Version: 0.86.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: current@freebsd.org Subject: Re: Annoying SCSI waiting... X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2004 15:01:30 -0000 Ruslan Ermilov wrote: > Hi Scott, > > On Sat, Oct 23, 2004 at 02:35:44AM -0600, Scott Long wrote: > >>I have a feeling that as we expand to things like ARM and possibly >>MIPS that there will be very little that is 'standard' anymore. >>It might be possible to distill some common 'CORE' pieces, but we >>really shouldn't over-engineer this =-) >> > > Maybe, it's really hard to say without actually trying it. :-) > > >>I've been hacking up config(8) to allow the 'include' directive to >>look outside of the current working directory. Ideally I'd like to >>have a new directive that allows you to specify and/or override the >>default search path for included configs. Unfortunately my blissful >>ignorance towards lex/yacc is starting to show =-) >> > > It already works. What you probably miss is double quotes around > the argument: > > # pwd > /usr/src/sys/i386/conf > # cat TEST > include GENERIC > include "../../conf/FOO" > # cat ../../conf/FOO > device foo > # config -d /tmp/TEST TEST > config: Error: device "foo" is unknown > config: 1 errors > > > Cheers, I know that you can manually put the path in, but I want to be able to say include SCSI and have it automatically look in ../../conf Scott