8ed9860914
and kern.cam.ctl.disable tunable; those were introduced as a workaround to make it possible to boot GENERIC on low memory machines. With ctl(4) being built as a module and automatically loaded by ctladm(8), this makes CTL work out of the box. Reviewed by: ken Sponsored by: FreeBSD Foundation
27 lines
466 B
Makefile
27 lines
466 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../cam/ctl
|
|
|
|
KMOD= ctl
|
|
|
|
SRCS= ctl.c
|
|
SRCS+= ctl_backend.c
|
|
SRCS+= ctl_backend_block.c
|
|
SRCS+= ctl_backend_ramdisk.c
|
|
SRCS+= ctl_cmd_table.c
|
|
SRCS+= ctl_frontend.c
|
|
SRCS+= ctl_frontend_cam_sim.c
|
|
SRCS+= ctl_frontend_internal.c
|
|
SRCS+= ctl_mem_pool.c
|
|
SRCS+= ctl_scsi_all.c
|
|
SRCS+= ctl_error.c
|
|
SRCS+= ctl_util.c
|
|
SRCS+= scsi_ctl.c
|
|
SRCS+= bus_if.h
|
|
SRCS+= device_if.h
|
|
SRCS+= vnode_if.h
|
|
SRCS+= opt_cam.h
|
|
SRCS+= opt_kdtrace.h
|
|
|
|
.include <bsd.kmod.mk>
|