Connect RAID3 GEOM class to the build.

This commit is contained in:
Pawel Jakub Dawidek 2004-08-16 06:36:21 +00:00
parent b67471f34a
commit e81856c34c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=133812
7 changed files with 10 additions and 1 deletions

View File

@ -92,6 +92,8 @@
..
nop
..
raid3
..
stripe
..
..

View File

@ -38,7 +38,8 @@ LSUBDIRS= cam/scsi dev/an dev/bktr dev/firewire dev/ic dev/iicbus \
dev/ofw dev/ppbus dev/smbus dev/usb dev/wi dev/utopia fs/devfs \
fs/fdescfs fs/fifofs fs/msdosfs fs/ntfs fs/nullfs fs/nwfs fs/portalfs \
fs/procfs fs/smbfs fs/udf fs/umapfs fs/unionfs \
geom/concat geom/gate geom/label geom/mirror geom/nop geom/stripe \
geom/concat geom/gate geom/label geom/mirror geom/nop geom/raid3 \
geom/stripe \
isofs/cd9660 netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \
netgraph/atm security/mac_biba security/mac_bsdextended \
security/mac_lomac security/mac_mls security/mac_partition \

View File

@ -4,6 +4,7 @@ SUBDIR= concat
SUBDIR+=label
SUBDIR+=mirror
SUBDIR+=nop
SUBDIR+=raid3
SUBDIR+=stripe
.include <bsd.subdir.mk>

View File

@ -130,6 +130,7 @@ options GEOM_MBR # DOS/MBR partitioning
options GEOM_MIRROR # Disk mirroring.
options GEOM_NOP # Test class.
options GEOM_PC98 # NEC PC9800 partitioning
options GEOM_RAID3 # RAID3 functionality.
options GEOM_STRIPE # Disk striping.
options GEOM_SUNLABEL # Sun/Solaris partitioning
options GEOM_UZIP # Read-only compressed disks

View File

@ -948,6 +948,8 @@ geom/label/g_label_ufs.c optional geom_label
geom/mirror/g_mirror.c optional geom_mirror
geom/mirror/g_mirror_ctl.c optional geom_mirror
geom/nop/g_nop.c optional geom_nop
geom/raid3/g_raid3.c optional geom_raid3
geom/raid3/g_raid3_ctl.c optional geom_raid3
geom/stripe/g_stripe.c optional geom_stripe
geom/uzip/g_uzip.c optional geom_uzip
geom/geom_aes.c optional geom_aes

View File

@ -80,6 +80,7 @@ GEOM_MBR opt_geom.h
GEOM_MIRROR opt_geom.h
GEOM_NOP opt_geom.h
GEOM_PC98 opt_geom.h
GEOM_RAID3 opt_geom.h
GEOM_STRIPE opt_geom.h
GEOM_SUNLABEL opt_geom.h
GEOM_UZIP opt_geom.h

View File

@ -13,6 +13,7 @@ SUBDIR= geom_apple \
geom_mirror \
geom_nop \
geom_pc98 \
geom_raid3 \
geom_stripe \
geom_sunlabel \
geom_uzip \