diff options
author | marcel <marcel@FreeBSD.org> | 2008-03-02 05:54:34 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2008-03-02 05:54:34 +0000 |
commit | dc90885558261fbe395985c7134716c09bc0c646 (patch) | |
tree | c9f40e2a21a6275ad5cf90c5ecf8e4e5a66c60ee /sys/modules/geom/geom_part | |
parent | 635be493045e4d2da841ce8f5762e525fbd6807b (diff) | |
download | FreeBSD-src-dc90885558261fbe395985c7134716c09bc0c646.zip FreeBSD-src-dc90885558261fbe395985c7134716c09bc0c646.tar.gz |
Add geom_part module.
Diffstat (limited to 'sys/modules/geom/geom_part')
-rw-r--r-- | sys/modules/geom/geom_part/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/modules/geom/geom_part/Makefile b/sys/modules/geom/geom_part/Makefile new file mode 100644 index 0000000..59656d6 --- /dev/null +++ b/sys/modules/geom/geom_part/Makefile @@ -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> |