head	1.3;
access;
symbols
	RELENG_5_2_1_RELEASE:1.1
	RELENG_5_2_0_RELEASE:1.1
	RELENG_5_2:1.1.0.6
	RELENG_5_2_BP:1.1
	RELENG_5_1_0_RELEASE:1.1
	RELENG_5_1:1.1.0.4
	RELENG_5_1_BP:1.1
	RELENG_5_0_0_RELEASE:1.1
	RELENG_5_0:1.1.0.2
	RELENG_5_0_BP:1.1;
locks; strict;
comment	@# @;


1.3
date	2004.03.16.12.23.43;	author scottl;	state dead;
branches;
next	1.2;

1.2
date	2003.12.29.09.03.38;	author bde;	state Exp;
branches;
next	1.1;

1.1
date	2002.10.20.08.17.39;	author scottl;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Remove RAIDFrame.  It hasn't worked since GEOM replaced the old disk
mini-layer.  I don't have time to bing it forward into the GEOM world, and
no one else has stepped forward to claim it.  It'll be in the Attic for safe
keeping for now.
@
text
@# $FreeBSD: src/sys/modules/raidframe/Makefile,v 1.2 2003/12/29 09:03:38 bde Exp $

.PATH:	${.CURDIR}/../../dev/raidframe

KMOD=	raidframe
SRCS=	rf_acctrace.c rf_alloclist.c rf_aselect.c rf_callback.c \
	rf_chaindecluster.c rf_copyback.c rf_cvscan.c rf_dagdegrd.c \
	rf_dagdegwr.c rf_dagffrd.c rf_dagffwr.c rf_dagfuncs.c rf_dagutils.c \
	rf_debugMem.c rf_debugprint.c rf_decluster.c rf_declusterPQ.c \
	rf_diskqueue.c rf_disks.c rf_driver.c rf_engine.c rf_evenodd.c \
	rf_evenodd_dagfuncs.c rf_evenodd_dags.c rf_fifo.c rf_interdecluster.c \
	rf_invertq.c rf_layout.c rf_map.c rf_mcpair.c rf_memchunk.c \
	rf_nwayxor.c rf_options.c rf_paritylog.c rf_paritylogDiskMgr.c \
	rf_paritylogging.c rf_parityloggingdags.c rf_parityscan.c rf_pq.c \
	rf_pqdeg.c rf_pqdegdags.c rf_psstatus.c rf_raid0.c rf_raid1.c \
	rf_raid4.c rf_raid5.c rf_raid5_rotatedspare.c rf_reconbuffer.c \
	rf_reconmap.c rf_reconstruct.c rf_reconutil.c rf_revent.c \
	rf_shutdown.c rf_sstf.c rf_states.c rf_stripelocks.c rf_strutils.c \
	rf_threadstuff.c rf_utils.c rf_freebsdkintf.c \
	opt_raid.h vnode_if.h
RF_AUTOCONFIG?= 1
RF_DEBUG?= 0

opt_raid.h:
	echo "#define RAID_AUTOCONFIG ${RF_AUTOCONFIG}" > ${.TARGET}
	echo "#define RAID_DEBUG ${RF_DEBUG}" >> ${.TARGET}

.include <bsd.kmod.mk>
@


1.2
log
@Fixed some style bugs (mainly the bad examples @@echo, NOMAN, and non-use
of ${.TARGET}).  This was the last instances of @@echo in module Makefiles
after it was removed in sio/Makefile.  NOMAN is nonsense in module
Makefiles, and was removed, but came back here and in too many other
places.
@
text
@d1 1
a1 1
# $FreeBSD$
@


1.1
log
@After much delay and anticipation, welcome RAIDFrame into the FreeBSD
world.  This should be considered highly experimental.

Approved-by:	re
@
text
@a1 2
KMOD=	raidframe
NOMAN=
d5 1
d19 3
a21 3
	rf_threadstuff.c rf_utils.c rf_freebsdkintf.c

SRCS+=	opt_raid.h vnode_if.h
a22 3
RF_AUTOCONFIG?= 1

#CFLAGS+= -g
d25 2
a26 2
	@@echo "#define RAID_AUTOCONFIG ${RF_AUTOCONFIG}" > opt_raid.h
	@@echo "#define RAID_DEBUG ${RF_DEBUG}" >> opt_raid.h
@

