Connect GZERO to the build.

MFC after:	3 days
This commit is contained in:
Pawel Jakub Dawidek 2005-07-25 10:49:05 +00:00
parent 05a6b7ad62
commit 869de95743
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148384
4 changed files with 5 additions and 1 deletions

View File

@ -145,6 +145,7 @@ options GEOM_STRIPE # Disk striping.
options GEOM_SUNLABEL # Sun/Solaris partitioning
options GEOM_UZIP # Read-only compressed disks
options GEOM_VOL # Volume names from UFS superblock
options GEOM_ZERO # Peformance testing helper.
#
# The root device and filesystem type can be compiled in;

View File

@ -1066,6 +1066,7 @@ geom/raid3/g_raid3_ctl.c optional geom_raid3
geom/shsec/g_shsec.c optional geom_shsec
geom/stripe/g_stripe.c optional geom_stripe
geom/uzip/g_uzip.c optional geom_uzip
geom/zero/g_zero.c optional geom_zero
gnu/fs/ext2fs/ext2_alloc.c optional ext2fs \
warning "kernel contains GPL contaminated ext2fs filesystem"
gnu/fs/ext2fs/ext2_balloc.c optional ext2fs

View File

@ -90,6 +90,7 @@ GEOM_STRIPE opt_geom.h
GEOM_SUNLABEL opt_geom.h
GEOM_UZIP opt_geom.h
GEOM_VOL opt_geom.h
GEOM_ZERO opt_geom.h
KSTACK_MAX_PAGES
KSTACK_PAGES
KTRACE

View File

@ -19,6 +19,7 @@ SUBDIR= geom_apple \
geom_sunlabel \
geom_uzip \
geom_vinum \
geom_vol_ffs
geom_vol_ffs \
geom_zero
.include <bsd.subdir.mk>