From e56f0b348a88d8f45770ece8aabbddbf961fb20f Mon Sep 17 00:00:00 2001 From: Peter Avalos Date: Sat, 5 Jan 2008 08:16:04 +0000 Subject: [PATCH] Build aic(4) as a kernel module. --- sys/dev/disk/Makefile | 4 ++-- sys/dev/disk/aic/Makefile | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 sys/dev/disk/aic/Makefile diff --git a/sys/dev/disk/Makefile b/sys/dev/disk/Makefile index f9a2e3bfc3..d0079584d2 100644 --- a/sys/dev/disk/Makefile +++ b/sys/dev/disk/Makefile @@ -1,9 +1,9 @@ -# $DragonFly: src/sys/dev/disk/Makefile,v 1.3 2007/01/30 14:50:11 corecode Exp $ +# $DragonFly: src/sys/dev/disk/Makefile,v 1.4 2008/01/05 08:16:04 pavalos Exp $ # .include "${.CURDIR}/../../platform/${MACHINE_PLATFORM}/Makefile.inc" -SUBDIR= aha aic7xxx ccd ispfw md ncv nsp sbp stg trm vn vpo +SUBDIR= aha aic aic7xxx ccd ispfw md ncv nsp sbp stg trm vn vpo .for dir in ${SUBDIR} .if empty(DEV_SUPPORT:Mdisk) && \ diff --git a/sys/dev/disk/aic/Makefile b/sys/dev/disk/aic/Makefile new file mode 100644 index 0000000000..dc5ac571f4 --- /dev/null +++ b/sys/dev/disk/aic/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD: src/sys/modules/aic/Makefile,v 1.6 2004/05/26 00:53:00 imp Exp $ +# $DragonFly: src/sys/dev/disk/aic/Makefile,v 1.1 2008/01/05 08:16:04 pavalos Exp $ + +.PATH: ${.CURDIR}/../../dev/aic + +KMOD= aic +SRCS= aic.c aic_isa.c aic_pccard.c +SRCS+= device_if.h bus_if.h pci_if.h isa_if.h card_if.h +SRCS+= opt_cam.h opt_scsi.h + +.include -- 2.11.4.GIT