aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2012-09-06 18:02:32 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2012-09-06 18:02:32 +0000
commit2a6ce61ae1ec1618376df8246b1688e8bb7c660d (patch)
treeafb5a64c676316abeeecafcd6a38f274768535e8 /sys
parent1e3510089f5b6950fe5f31fd8e59b525e9f50aff (diff)
downloadsrc-2a6ce61ae1ec1618376df8246b1688e8bb7c660d.tar.gz
src-2a6ce61ae1ec1618376df8246b1688e8bb7c660d.zip
Add a kernel module on pc98 for the ct(4) driver.
Notes
Notes: svn path=/head/; revision=240170
Diffstat (limited to 'sys')
-rw-r--r--sys/modules/Makefile2
-rw-r--r--sys/modules/ct/Makefile10
2 files changed, 12 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index ee135884984b..486151fb1631 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -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
diff --git a/sys/modules/ct/Makefile b/sys/modules/ct/Makefile
new file mode 100644
index 000000000000..91cb936dbb4a
--- /dev/null
+++ b/sys/modules/ct/Makefile
@@ -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>