mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add GEOM module compilation shims.
This commit is contained in:
parent
c16ad8ccc8
commit
5d9bef6473
9 changed files with 68 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ SUBDIR= accf_data \
|
|||
fdescfs \
|
||||
firewire \
|
||||
fxp \
|
||||
geom \
|
||||
gx \
|
||||
hifn \
|
||||
if_disc \
|
||||
|
|
|
|||
11
sys/modules/geom/Makefile
Normal file
11
sys/modules/geom/Makefile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# $FreeBSD$
|
||||
|
||||
SUBDIR= geom_apple \
|
||||
geom_bde \
|
||||
geom_bsd \
|
||||
geom_gpt \
|
||||
geom_mbr \
|
||||
geom_pc98 \
|
||||
geom_sunlabel
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
8
sys/modules/geom/geom_apple/Makefile
Normal file
8
sys/modules/geom/geom_apple/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom
|
||||
|
||||
KMOD= geom_apple
|
||||
SRCS= geom_apple.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
8
sys/modules/geom/geom_bde/Makefile
Normal file
8
sys/modules/geom/geom_bde/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom/bde
|
||||
|
||||
KMOD= geom_bde
|
||||
SRCS= g_bde.c g_bde_crypt.c g_bde_lock.c g_bde_work.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
8
sys/modules/geom/geom_bsd/Makefile
Normal file
8
sys/modules/geom/geom_bsd/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom
|
||||
|
||||
KMOD= geom_bsd
|
||||
SRCS= geom_bsd.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
8
sys/modules/geom/geom_gpt/Makefile
Normal file
8
sys/modules/geom/geom_gpt/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom
|
||||
|
||||
KMOD= geom_gpt
|
||||
SRCS= geom_gpt.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
8
sys/modules/geom/geom_mbr/Makefile
Normal file
8
sys/modules/geom/geom_mbr/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom
|
||||
|
||||
KMOD= geom_mbr
|
||||
SRCS= geom_mbr.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
8
sys/modules/geom/geom_pc98/Makefile
Normal file
8
sys/modules/geom/geom_pc98/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom
|
||||
|
||||
KMOD= geom_pc98
|
||||
SRCS= geom_pc98.c geom_pc98_enc.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
8
sys/modules/geom/geom_sunlabel/Makefile
Normal file
8
sys/modules/geom/geom_sunlabel/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../geom
|
||||
|
||||
KMOD= geom_sunlabel
|
||||
SRCS= geom_sunlabel.c geom_sunlabel_enc.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
Loading…
Reference in a new issue