aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/cam
Commit message (Collapse)AuthorAgeFilesLines
* MFC:Yaroslav Tykhiy2006-02-101-0/+2
| | | | | | | | | | | | | | | | | | | Avoid creating (and subsequently using) fake opt_*.h files when the modules are built with the kernel and hence actual opt_*.h files are available in ${KERNBUILDDIR}. Fix a few small bugs that would prevent this from working. At last the build options of the modules become consistent with those of the kernel unless the MODULES_WITH_WORLD way still is used. Approved by: re (kensmith, scottl) Requested by: ru Tested on: amd64 i386 sparc64 Tested by: md5 Notes: svn path=/stable/6/; revision=155500
* Release n_hibma's maintainership due to his ENOTIME.Jens Schweikhardt2005-06-041-2/+1
| | | | | | | Discussed with, okayed, authorized, requested by, on behalf of: n_hibma (MAINTAINER) Notes: svn path=/head/; revision=146957
* Remove the HW_WDOG option; it serves no purpose.Dag-Erling Smørgrav2004-08-291-1/+0
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=134479
* Remove opt_da.h from the Makefile as well. Duplication of the option inNate Lawson2004-04-191-1/+0
| | | | | | | | both the Makefile and sys/conf/options is what led to this oversight. Apologies for breaking the build. Notes: svn path=/head/; revision=128431
* Use double quotes instead of single quotes for echos to build optionsBruce Evans2003-12-291-1/+1
| | | | | | | | headers as in most other modules Makefiles (5 yesterday, none now). Fixed any simple nearby style bugs (not many). Notes: svn path=/head/; revision=123962
* Fix the new DA_OLD_QUIRKS option for normal and module compiles.Nate Lawson2003-07-291-0/+1
| | | | | | | Pointed out by: bde Notes: svn path=/head/; revision=118179
* New SCSI target emulator codeNate Lawson2002-11-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This code allows a user program to enable target mode on a SIM and then emulate any number of devices (disks, tape drives, etc.) All decisions about device behavior (UA, CA, inquiry response) are left to the usermode program and the kernel driver is merely a conduit for CCBs. This enables multiple concurrent target emulators, each using its own backing store and IO model. Also included is a user program that emulates a disk (RBC) using a file as a backing store. This provides functionality similar to md(4) at the CAM layer. Code has been tested on ahc(4) and should also work on isp(4) (and other SIMs that gain target mode support). It is a complete rewrite of /sys/cam/scsi_target* and /usr/share/examples/scsi_target. Design, comments from: gibbs Supported by: Cryptography Research Approved by: re Notes: svn path=/head/; revision=107178
* Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.Yoshihiro Takahashi2002-11-061-4/+0
| | | | Notes: svn path=/head/; revision=106497
* Remove cam_extend.c from sources to unbreak modules.Alfred Perlstein2002-08-151-1/+1
| | | | | | | Missed by: kern/39809,njl Notes: svn path=/head/; revision=101946
* Drop <bsd.man.mk> support from <bsd.kmod.mk>.Ruslan Ermilov2002-01-111-2/+0
| | | | | | | Not objected to by: -current Notes: svn path=/head/; revision=89260
* Turn on unconditional symbol export for modules whose API isMike Smith2002-01-111-0/+2
| | | | | | | | not clear enough, will require additional analysis, or will require some input from their maintainers. Notes: svn path=/head/; revision=89245
* Add pc98 support.Yoshihiro Takahashi2001-02-101-0/+4
| | | | Notes: svn path=/head/; revision=72315
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-24/+25
| | | | Notes: svn path=/head/; revision=70711
* CAM, the module: scbus, da, cd, and st wrapped in one module.Nick Hibma2000-08-131-0/+33
Make the umass driver depend on this module. Makes it possible to compile the kernel without SCSI support and load it when for example a USB floppy is conencted. Notes: svn path=/head/; revision=64621