From owner-freebsd-current@FreeBSD.ORG Fri Aug 15 20:28:33 2003 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 3EB6137B401; Fri, 15 Aug 2003 20:28:33 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98BDC43F93; Fri, 15 Aug 2003 20:28:32 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h7G3SVQX000202; Fri, 15 Aug 2003 20:28:31 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h7G3SV4l000201; Fri, 15 Aug 2003 20:28:31 -0700 (PDT) Date: Fri, 15 Aug 2003 20:28:31 -0700 From: "David O'Brien" To: Eric Message-ID: <20030816032831.GA140@dragon.nuxi.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-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 cc: freebsd-current@freebsd.org cc: freebsd-questions@freebsd.org Subject: Re: can't wire down scsi devices X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@freebsd.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 03:28:33 -0000 On Fri, Aug 15, 2003 at 03:49:03PM -0400, Eric wrote: > here's what i did: > # cd /sys/i386/conf/ > # cp GENERIC TEST > > I've added the following lines to TEST: > > device isp0 > device scbus0 at isp0 bus 0 > device da0 at scbus2 target 0 This is the old 3.x way. You want to do this in /boot/device.hints: hint.scbus.0.at="ahc0" hint.da.0.at="scbus0" hint.da.0.target="0" hint.da.1.at="scbus0" hint.da.1.target="1" ... hint.scbus.1.at="ahc1" hint.da.20.at="scbus1" hint.da.20.target="0" hint.da.21.at="scbus1" hint.da.21.target="1" ... hint.scbus.2.at="sym1" hint.da.40.at="scbus2" hint.da.40.target="0" ... hint.da.50.at="scbus4" ...