2004-05-20 10:09:56 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2006-03-17 18:54:44 +00:00
|
|
|
|
2006-10-06 08:27:07 +00:00
|
|
|
SUBDIR= cache
|
|
|
|
SUBDIR+=concat
|
2006-03-17 18:54:44 +00:00
|
|
|
.if ${MK_OPENSSL} != "no"
|
2005-07-27 23:56:32 +00:00
|
|
|
SUBDIR+=eli
|
2005-08-02 20:12:30 +00:00
|
|
|
.endif
|
2006-10-31 22:22:30 +00:00
|
|
|
SUBDIR+=journal
|
Introduce GEOM_LABEL class.
This class is used for detecting volume labels on file systems:
UFS, MSDOSFS (FAT12, FAT16, FAT32) and ISO9660.
It also provide native labelization (there is no need for file system).
g_label_ufs.c is based on geom_vol_ffs from Gordon Tetlow.
g_label_msdos.c and g_label_iso9660.c are probably hacks, I just found
where volume labels are stored and I use those offsets here,
but with this class it should be easy to do it as it should be done by
someone who know how.
Implementing volume labels detection for other file systems also should
be trivial.
New providers are created in those directories:
/dev/ufs/ (UFS1, UFS2)
/dev/msdosfs/ (FAT12, FAT16, FAT32)
/dev/iso9660/ (ISO9660)
/dev/label/ (native labels, configured with glabel(8))
Manual page cleanups and some comments inside were submitted by
Simon L. Nielsen, who was, as always, very helpful. Thanks!
2004-07-02 19:40:36 +00:00
|
|
|
SUBDIR+=label
|
2004-07-30 23:18:53 +00:00
|
|
|
SUBDIR+=mirror
|
2010-01-16 09:52:49 +00:00
|
|
|
SUBDIR+=mountver
|
2007-02-27 04:01:58 +00:00
|
|
|
SUBDIR+=multipath
|
2004-05-20 10:09:56 +00:00
|
|
|
SUBDIR+=nop
|
2007-05-15 20:25:18 +00:00
|
|
|
SUBDIR+=part
|
MFgraid/head:
Add new RAID GEOM class, that is going to replace ataraid(4) in supporting
various BIOS-based software RAIDs. Unlike ataraid(4) this implementation
does not depend on legacy ata(4) subsystem and can be used with any disk
drivers, including new CAM-based ones (ahci(4), siis(4), mvs(4), ata(4)
with `options ATA_CAM`). To make code more readable and extensible, this
implementation follows modular design, including core part and two sets
of modules, implementing support for different metadata formats and RAID
levels.
Support for such popular metadata formats is now implemented:
Intel, JMicron, NVIDIA, Promise (also used by AMD/ATI) and SiliconImage.
Such RAID levels are now supported:
RAID0, RAID1, RAID1E, RAID10, SINGLE, CONCAT.
For any all of these RAID levels and metadata formats this class supports
full cycle of volume operations: reading, writing, creation, deletion,
disk removal and insertion, rebuilding, dirty shutdown detection
and resynchronization, bad sector recovery, faulty disks tracking,
hot-spare disks. For Intel and Promise formats there is support multiple
volumes per disk set.
Look graid(8) manual page for additional details.
Co-authored by: imp
Sponsored by: Cisco Systems, Inc. and iXsystems, Inc.
2011-03-24 21:31:32 +00:00
|
|
|
SUBDIR+=raid
|
2004-08-16 06:36:21 +00:00
|
|
|
SUBDIR+=raid3
|
2010-04-12 16:37:45 +00:00
|
|
|
SUBDIR+=sched
|
2005-01-11 18:18:40 +00:00
|
|
|
SUBDIR+=shsec
|
2004-05-20 10:09:56 +00:00
|
|
|
SUBDIR+=stripe
|
2007-09-23 07:34:23 +00:00
|
|
|
SUBDIR+=virstor
|
2004-05-20 10:09:56 +00:00
|
|
|
|
|
|
|
.include <bsd.subdir.mk>
|