Date: Fri, 15 Aug 2003 20:28:31 -0700 From: "David O'Brien" <obrien@freebsd.org> To: Eric <esmith@jaguar.ir.miami.edu> Cc: freebsd-questions@freebsd.org Subject: Re: can't wire down scsi devices Message-ID: <20030816032831.GA140@dragon.nuxi.com> In-Reply-To: <Pine.OSF.4.56.0308151547190.32259@jaguar.ir.miami.edu> References: <Pine.OSF.4.56.0308151547190.32259@jaguar.ir.miami.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
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" ...
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030816032831.GA140>