Connect GEOM_MIRROR class to the build.

This commit is contained in:
Pawel Jakub Dawidek 2004-07-30 23:18:53 +00:00
parent fa4a1febf7
commit 8a8fbaca32
7 changed files with 9 additions and 1 deletions
etc/mtree
include
sbin/geom/class
sys

@ -88,6 +88,8 @@
.. ..
label label
.. ..
mirror
..
nop nop
.. ..
stripe stripe

@ -36,7 +36,7 @@ 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 \ 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/fdescfs fs/fifofs fs/msdosfs fs/ntfs fs/nullfs fs/nwfs fs/portalfs \
fs/procfs fs/smbfs fs/udf fs/umapfs fs/unionfs \ fs/procfs fs/smbfs fs/udf fs/umapfs fs/unionfs \
geom/concat geom/gate geom/label geom/nop geom/stripe \ geom/concat geom/gate geom/label geom/mirror geom/nop geom/stripe \
isofs/cd9660 netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \ isofs/cd9660 netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \
netgraph/atm security/mac_biba security/mac_bsdextended \ netgraph/atm security/mac_biba security/mac_bsdextended \
security/mac_lomac security/mac_mls security/mac_partition \ security/mac_lomac security/mac_mls security/mac_partition \

@ -2,6 +2,7 @@
SUBDIR= concat SUBDIR= concat
SUBDIR+=label SUBDIR+=label
SUBDIR+=mirror
SUBDIR+=nop SUBDIR+=nop
SUBDIR+=stripe SUBDIR+=stripe

@ -127,6 +127,7 @@ options GEOM_GATE # Userland services.
options GEOM_GPT # GPT partitioning options GEOM_GPT # GPT partitioning
options GEOM_LABEL # Providers labelization. options GEOM_LABEL # Providers labelization.
options GEOM_MBR # DOS/MBR partitioning options GEOM_MBR # DOS/MBR partitioning
options GEOM_MIRROR # Disk mirroring.
options GEOM_NOP # Test class. options GEOM_NOP # Test class.
options GEOM_PC98 # NEC PC9800 partitioning options GEOM_PC98 # NEC PC9800 partitioning
options GEOM_STRIPE # Disk striping. options GEOM_STRIPE # Disk striping.

@ -944,6 +944,8 @@ geom/label/g_label.c optional geom_label
geom/label/g_label_iso9660.c optional geom_label geom/label/g_label_iso9660.c optional geom_label
geom/label/g_label_msdosfs.c optional geom_label geom/label/g_label_msdosfs.c optional geom_label
geom/label/g_label_ufs.c optional geom_label 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/nop/g_nop.c optional geom_nop
geom/stripe/g_stripe.c optional geom_stripe geom/stripe/g_stripe.c optional geom_stripe
geom/geom_aes.c optional geom_aes geom/geom_aes.c optional geom_aes

@ -77,6 +77,7 @@ GEOM_GATE opt_geom.h
GEOM_GPT opt_geom.h GEOM_GPT opt_geom.h
GEOM_LABEL opt_geom.h GEOM_LABEL opt_geom.h
GEOM_MBR opt_geom.h GEOM_MBR opt_geom.h
GEOM_MIRROR opt_geom.h
GEOM_NOP opt_geom.h GEOM_NOP opt_geom.h
GEOM_PC98 opt_geom.h GEOM_PC98 opt_geom.h
GEOM_STRIPE opt_geom.h GEOM_STRIPE opt_geom.h

@ -10,6 +10,7 @@ SUBDIR= geom_apple \
geom_gpt \ geom_gpt \
geom_label \ geom_label \
geom_mbr \ geom_mbr \
geom_mirror \
geom_nop \ geom_nop \
geom_pc98 \ geom_pc98 \
geom_stripe \ geom_stripe \