mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Add GEOM module compilation shims.
This commit is contained in:
parent
c16ad8ccc8
commit
5d9bef6473
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115479
@ -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 New Issue
Block a user