can't wire down scsi devices

David O'Brien obrien at freebsd.org
Fri Aug 15 20:28:33 PDT 2003


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"
...


More information about the freebsd-current mailing list