mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Hook geom_lvm(4) up to the build.
This commit is contained in:
parent
77b65eef19
commit
2b8d4f5bd4
5 changed files with 12 additions and 0 deletions
|
|
@ -94,6 +94,7 @@ MAN= aac.4 \
|
|||
gem.4 \
|
||||
geom.4 \
|
||||
geom_fox.4 \
|
||||
geom_lvm.4 \
|
||||
geom_uzip.4 \
|
||||
gif.4 \
|
||||
gre.4 \
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ SUBDIR= geom_bde \
|
|||
geom_gate \
|
||||
geom_journal \
|
||||
geom_label \
|
||||
geom_lvm \
|
||||
geom_mbr \
|
||||
geom_mirror \
|
||||
geom_multipath \
|
||||
|
|
|
|||
8
sys/modules/geom/geom_lvm/Makefile
Normal file
8
sys/modules/geom/geom_lvm/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom/lvm
|
||||
|
||||
KMOD= geom_lvm
|
||||
SRCS= g_lvm.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
Loading…
Reference in a new issue