Add geom_part module.

This commit is contained in:
Marcel Moolenaar 2008-03-02 05:54:34 +00:00
parent e43c8f6acc
commit da50cd3932
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176724
2 changed files with 19 additions and 0 deletions

View file

@ -15,6 +15,7 @@ SUBDIR= geom_bde \
geom_mirror \
geom_multipath \
geom_nop \
geom_part \
geom_pc98 \
geom_raid3 \
geom_shsec \

View file

@ -0,0 +1,18 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom/part
KMOD= geom_part
SRCS= g_part.c \
g_part_if.c g_part_if.h \
g_part_apm.c \
g_part_bsd.c \
g_part_gpt.c \
g_part_mbr.c \
g_part_vtoc8.c
SRCS+= bus_if.h device_if.h
MFILES= kern/bus_if.m kern/device_if.m geom/part/g_part_if.m
.include <bsd.kmod.mk>