blob: 2075d398a7555766f3c785704975eb7cdeea9222 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $FreeBSD$
MAINTAINER = n_hibma@freebsd.org
S = ${.CURDIR}/../..
.PATH: $S/cam $S/cam/scsi
KMOD = cam
# See sys/conf/options for the flags that go into the different opt_*.h files.
SRCS = opt_cam.h
SRCS += opt_scsi.h
SRCS += opt_cd.h
SRCS += opt_hw_wdog.h
SRCS += opt_pt.h
SRCS += opt_sa.h
SRCS += opt_ses.h
SRCS += device_if.h bus_if.h
SRCS += cam.c cam_extend.c cam_periph.c cam_queue.c
SRCS += cam_sim.c cam_xpt.c
SRCS += scsi_all.c scsi_cd.c scsi_ch.c
SRCS += scsi_da.c
SRCS += scsi_pass.c
SRCS += scsi_pt.c
SRCS += scsi_sa.c
SRCS += scsi_ses.c
SRCS += scsi_targ_bh.c scsi_target.c
NOMAN =
opt_scsi.h:
echo '#define SCSI_DELAY 15000' > opt_scsi.h
.include <bsd.kmod.mk>
|