Connect GEOM_ELI class to the build.
MFC after: 1 week
This commit is contained in:
parent
57922fa5cc
commit
ae2e0b62c3
@ -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 \
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
SUBDIR= concat
|
||||
SUBDIR+=eli
|
||||
SUBDIR+=label
|
||||
SUBDIR+=mirror
|
||||
SUBDIR+=nop
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -5,6 +5,7 @@ SUBDIR= geom_apple \
|
||||
geom_bsd \
|
||||
geom_ccd \
|
||||
geom_concat \
|
||||
geom_eli \
|
||||
geom_fox \
|
||||
geom_gate \
|
||||
geom_gpt \
|
||||
|
Loading…
x
Reference in New Issue
Block a user