diff options
author | scottl <scottl@FreeBSD.org> | 2002-10-20 08:17:39 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2002-10-20 08:17:39 +0000 |
commit | 710948de69ddeae56bda663219319f6d859aea1f (patch) | |
tree | 71c65823ba2e8591de708d5cb2e990a75135ee11 /sys/modules/raidframe | |
parent | 63bd46464d6d4587c20c1ca62fb6a6e3be132db9 (diff) | |
download | FreeBSD-src-710948de69ddeae56bda663219319f6d859aea1f.zip FreeBSD-src-710948de69ddeae56bda663219319f6d859aea1f.tar.gz |
After much delay and anticipation, welcome RAIDFrame into the FreeBSD
world. This should be considered highly experimental.
Approved-by: re
Diffstat (limited to 'sys/modules/raidframe')
-rw-r--r-- | sys/modules/raidframe/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sys/modules/raidframe/Makefile b/sys/modules/raidframe/Makefile new file mode 100644 index 0000000..d4ff5dc --- /dev/null +++ b/sys/modules/raidframe/Makefile @@ -0,0 +1,32 @@ +# $FreeBSD$ +KMOD= raidframe +NOMAN= + +.PATH: ${.CURDIR}/../../dev/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 + +SRCS+= opt_raid.h vnode_if.h +RF_DEBUG?= 0 +RF_AUTOCONFIG?= 1 + +#CFLAGS+= -g + +opt_raid.h: + @echo "#define RAID_AUTOCONFIG ${RF_AUTOCONFIG}" > opt_raid.h + @echo "#define RAID_DEBUG ${RF_DEBUG}" >> opt_raid.h + +.include <bsd.kmod.mk> |