Connect RAID3 GEOM class to the build.
This commit is contained in:
parent
b67471f34a
commit
e81856c34c
@ -92,6 +92,8 @@
|
||||
..
|
||||
nop
|
||||
..
|
||||
raid3
|
||||
..
|
||||
stripe
|
||||
..
|
||||
..
|
||||
|
@ -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 \
|
||||
|
@ -4,6 +4,7 @@ SUBDIR= concat
|
||||
SUBDIR+=label
|
||||
SUBDIR+=mirror
|
||||
SUBDIR+=nop
|
||||
SUBDIR+=raid3
|
||||
SUBDIR+=stripe
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -13,6 +13,7 @@ SUBDIR= geom_apple \
|
||||
geom_mirror \
|
||||
geom_nop \
|
||||
geom_pc98 \
|
||||
geom_raid3 \
|
||||
geom_stripe \
|
||||
geom_sunlabel \
|
||||
geom_uzip \
|
||||
|
Loading…
x
Reference in New Issue
Block a user