Hook geom_lvm(4) up to the build.

This commit is contained in:
thompsa 2008-02-11 03:10:40 +00:00
parent 1d945b74cc
commit c2724541ae
5 changed files with 12 additions and 0 deletions

View File

@ -94,6 +94,7 @@ MAN= aac.4 \
gem.4 \
geom.4 \
geom_fox.4 \
geom_lvm.4 \
geom_uzip.4 \
gif.4 \
gre.4 \

View File

@ -140,6 +140,7 @@ options GEOM_FOX # Redundant path mitigation
options GEOM_GATE # Userland services.
options GEOM_JOURNAL # Journaling.
options GEOM_LABEL # Providers labelization.
options GEOM_LVM # LVM2 volumes
options GEOM_MBR # DOS/MBR partitioning
options GEOM_MIRROR # Disk mirroring.
options GEOM_MULTIPATH # Disk multipath

View File

@ -1299,6 +1299,7 @@ geom/label/g_label_msdosfs.c optional geom_label
geom/label/g_label_ntfs.c optional geom_label
geom/label/g_label_reiserfs.c optional geom_label
geom/label/g_label_ufs.c optional geom_label
geom/lvm/g_lvm.c optional geom_lvm
geom/mirror/g_mirror.c optional geom_mirror
geom/mirror/g_mirror_ctl.c optional geom_mirror
geom/multipath/g_multipath.c optional geom_multipath

View File

@ -10,6 +10,7 @@ SUBDIR= geom_bde \
geom_gate \
geom_journal \
geom_label \
geom_lvm \
geom_mbr \
geom_mirror \
geom_multipath \

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom/lvm
KMOD= geom_lvm
SRCS= g_lvm.c
.include <bsd.kmod.mk>