Date: Thu, 6 Sep 2012 18:02:32 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r240170 - in head/sys/modules: . ct Message-ID: <201209061802.q86I2Ww2061911@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209061802.q86I2Ww2061911>