From owner-svn-src-all@FreeBSD.ORG Thu Sep 6 18:02:33 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F37731065674; Thu, 6 Sep 2012 18:02:32 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF29C8FC0C; Thu, 6 Sep 2012 18:02:32 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q86I2Wv6061914; Thu, 6 Sep 2012 18:02:32 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q86I2Ww2061911; Thu, 6 Sep 2012 18:02:32 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201209061802.q86I2Ww2061911@svn.freebsd.org> From: John Baldwin Date: Thu, 6 Sep 2012 18:02:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240170 - in head/sys/modules: . ct X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Sep 2012 18:02:33 -0000 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