svn commit: r240170 - in head/sys/modules: . ct
John Baldwin
jhb at FreeBSD.org
Thu Sep 6 18:02:33 UTC 2012
Author: jhb
Date: Thu Sep 6 18:02:32 2012
New Revision: 240170
URL: http://svn.freebsd.org/changeset/base/240170
Log:
Add a kernel module on pc98 for the ct(4) driver.
Added:
head/sys/modules/ct/
head/sys/modules/ct/Makefile (contents, props changed)
Modified:
head/sys/modules/Makefile
Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile Thu Sep 6 17:28:47 2012 (r240169)
+++ head/sys/modules/Makefile Thu Sep 6 18:02:32 2012 (r240170)
@@ -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
Added: head/sys/modules/ct/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sys/modules/ct/Makefile Thu Sep 6 18:02:32 2012 (r240170)
@@ -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>
More information about the svn-src-head
mailing list