diff options
author | Kenneth D. Merry <ken@FreeBSD.org> | 1998-09-18 00:01:39 +0000 |
---|---|---|
committer | Kenneth D. Merry <ken@FreeBSD.org> | 1998-09-18 00:01:39 +0000 |
commit | 5623443753c51b9621eb06fee0d074096a274305 (patch) | |
tree | 6b6c678b42d7553574d916b0c4dde0b7ad9b62fa /sys/conf | |
parent | a822eb2a8ba11f0f183ae6ba1d14ea3e8bebf63e (diff) | |
download | src-5623443753c51b9621eb06fee0d074096a274305.tar.gz src-5623443753c51b9621eb06fee0d074096a274305.zip |
Move SCSI_DELAY and SCSI_CAM from the undocumented options section to the
CAM options section.
Document that SCSI_DELAY is in milliseconds, not seconds.
Tell users that SCSI_CAM is only needed if you've got the QLogic driver in
your kernel.
Reviewed by: gibbs
Notes
Notes:
svn path=/head/; revision=39443
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/NOTES | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index fdd58164842f..4090f4341519 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -2,7 +2,7 @@ # LINT -- config file for checking all the sources, tries to pull in # as much of the source tree as it can. # -# $Id: LINT,v 1.467 1998/09/17 03:15:30 msmith Exp $ +# $Id: LINT,v 1.468 1998/09/17 21:54:17 nsouch Exp $ # # NB: You probably don't want to try running a kernel built from this # file. Instead, you should start from GENERIC, and add options from @@ -673,6 +673,12 @@ device sctarg0 at scbus? # SCSI target # SCSI_NO_OP_STRINGS: When defined disables opcode descriptions # SCSI_REPORT_GEOMETRY: Always report disk geometry at boot up instead # of only when booting verbosely. +# SCSI_DELAY: The number of MILLISECONDS to freeze the SIM (scsi adapter) +# queue after a bus reset, and the number of milliseconds to +# freeze the device queue after a bus device reset. +# SCSI_CAM: This is only currently needed for the QLogic ISP driver. If +# you don't have the QLogic driver in your kernel, you don't +# need this option. options CAMDEBUG options "CAM_DEBUG_BUS=-1" options "CAM_DEBUG_TARGET=-1" @@ -682,6 +688,8 @@ options "CAM_MAX_HIGHPOWER=4" options SCSI_NO_SENSE_STRINGS options SCSI_NO_OP_STRINGS options SCSI_REPORT_GEOMETRY +options SCSI_DELAY=8000 # Be pessimistic about Joe SCSI device +options SCSI_CAM #We're using CAM in this kernel # Options for the CAM CDROM driver: # CHANGER_MIN_BUSY_SECONDS: Guaranteed minimum time quantum for a changer LUN @@ -1636,8 +1644,6 @@ options PCVT_SCREENSAVER options PCVT_USEKBDSEC options "PCVT_VT220KEYB" options PSM_DEBUG=1 -options SCSI_DELAY=8000 # Be pessimistic about Joe SCSI device -options SCSI_CAM #We're using CAM in this kernel options SCSI_NCR_DEBUG options SCSI_NCR_DFLT_TAGS=4 options SCSI_NCR_MAX_SYNC=10000 |