Add a kernel module on pc98 for the ct(4) driver.

This commit is contained in:
John Baldwin 2012-09-06 18:02:32 +00:00
parent 1e3510089f
commit 2a6ce61ae1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240170
2 changed files with 12 additions and 0 deletions

View File

@ -78,6 +78,7 @@ SUBDIR= \
${_crypto} \
${_cryptodev} \
${_cs} \
${_ct} \
${_ctau} \
${_cxgb} \
cxgbe \
@ -607,6 +608,7 @@ _x86bios= x86bios
.elif ${MACHINE} == "pc98"
_canbepm= canbepm
_canbus= canbus
_ct= ct
_pmc= pmc
_snc= snc
.endif

10
sys/modules/ct/Makefile Normal file
View File

@ -0,0 +1,10 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/ct
KMOD= ct
SRCS= bshw_machdep.c ct.c ct_isa.c
SRCS+= device_if.h bus_if.h isa_if.h
SRCS+= opt_ct.h opt_cam.h opt_scsi.h opt_ddb.h
.include <bsd.kmod.mk>