Put geom_gpt.c under the GEOM option instead of having a special GEOM_GPT

option for it.
This commit is contained in:
phk 2002-06-10 18:49:41 +00:00
parent 7c1d0c842e
commit c112e2f321
4 changed files with 3 additions and 7 deletions

View File

@ -102,7 +102,6 @@ options INCLUDE_CONFIG_FILE # Include this file in kernel
options GEOM # Use the GEOMetry system for
# disk-I/O transformations.
options GEOM_GPT # Include support for GPT disks.
#
# The root device and filesystem type can be compiled in;

View File

@ -732,7 +732,7 @@ geom/geom_disk.c optional geom
geom/geom_dump.c optional geom
geom/geom_enc.c optional geom
geom/geom_event.c optional geom
geom/geom_gpt.c optional geom geom_gpt
geom/geom_gpt.c optional geom
geom/geom_io.c optional geom
geom/geom_kern.c optional geom
geom/geom_mbr.c optional geom

View File

@ -63,8 +63,7 @@ ADW_ALLOW_MEMIO opt_adw.h # Allow PCI devices to use memory
# Miscellaneous options.
GEOM opt_geom.h
GEOM_GPT opt_geom.h # Add support for GUID Partition
# Tables (GPTs).
ADAPTIVE_MUTEXES
COMPAT_43 opt_compat.h
COMPAT_SUNOS opt_compat.h

View File

@ -58,9 +58,7 @@
#include <geom/geom.h>
#include <geom/geom_slice.h>
#ifdef _KERNEL
#include "opt_geom.h"
#endif
#define GEOM_GPT
#define MBR_CLASS_NAME "MBR"
#define MBREXT_CLASS_NAME "MBREXT"