Connect GEOM_ELI class to the build.

MFC after:	1 week
This commit is contained in:
Pawel Jakub Dawidek 2005-07-27 21:47:55 +00:00
parent c58794debd
commit 5ca1fcfe06
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148457
6 changed files with 11 additions and 2 deletions

View File

@ -42,8 +42,8 @@ LSUBDIRS= cam/scsi \
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/raid3 \
geom/shsec geom/stripe \
geom/concat geom/eli geom/gate geom/label geom/mirror geom/nop \
geom/raid3 geom/shsec geom/stripe \
isofs/cd9660 \
netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \
netgraph/atm netgraph/netflow \

View File

@ -1,6 +1,7 @@
# $FreeBSD$
SUBDIR= concat
SUBDIR+=eli
SUBDIR+=label
SUBDIR+=mirror
SUBDIR+=nop

View File

@ -131,6 +131,7 @@ options GEOM_APPLE # Apple partitioning
options GEOM_BDE # Disk encryption.
options GEOM_BSD # BSD disklabels
options GEOM_CONCAT # Disk concatenation.
options GEOM_ELI # Disk encryption.
options GEOM_FOX # Redundant path mitigation
options GEOM_GATE # Userland services.
options GEOM_GPT # GPT partitioning

View File

@ -1028,6 +1028,11 @@ geom/bde/g_bde_crypt.c optional geom_bde
geom/bde/g_bde_lock.c optional geom_bde
geom/bde/g_bde_work.c optional geom_bde
geom/concat/g_concat.c optional geom_concat
geom/eli/g_eli.c optional geom_eli
geom/eli/g_eli_crypto.c optional geom_eli
geom/eli/g_eli_ctl.c optional geom_eli
geom/eli/g_eli_key.c optional geom_eli
geom/eli/pkcs5v2.c optional geom_eli
geom/gate/g_gate.c optional geom_gate
geom/geom_aes.c optional geom_aes
geom/geom_apple.c optional geom_apple

View File

@ -76,6 +76,7 @@ GEOM_APPLE opt_geom.h
GEOM_BDE opt_geom.h
GEOM_BSD opt_geom.h
GEOM_CONCAT opt_geom.h
GEOM_ELI opt_geom.h
GEOM_FOX opt_geom.h
GEOM_GATE opt_geom.h
GEOM_GPT opt_geom.h

View File

@ -5,6 +5,7 @@ SUBDIR= geom_apple \
geom_bsd \
geom_ccd \
geom_concat \
geom_eli \
geom_fox \
geom_gate \
geom_gpt \