diff options
author | marcel <marcel@FreeBSD.org> | 2007-06-13 04:27:36 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2007-06-13 04:27:36 +0000 |
commit | 3f70795ddad4e34f98361722741152551f52eff6 (patch) | |
tree | cb8ba55470a80330fd10b1785199297fdb86f800 /sys/conf | |
parent | 505cd783b85e1e290dcbd38917fc7d2bbcd901df (diff) | |
download | FreeBSD-src-3f70795ddad4e34f98361722741152551f52eff6.zip FreeBSD-src-3f70795ddad4e34f98361722741152551f52eff6.tar.gz |
Add the MBR partitioning scheme to g_part. This does not yet
support the ability to install boot code.
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/NOTES | 1 | ||||
-rw-r--r-- | sys/conf/files | 1 | ||||
-rw-r--r-- | sys/conf/options | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 08ea41d..59a0cc8 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -151,6 +151,7 @@ options GEOM_MULTIPATH # Disk multipath options GEOM_NOP # Test class. options GEOM_PART_APM # Apple partitioning options GEOM_PART_GPT # GPT partitioning +options GEOM_PART_MBR # MBR partitioning options GEOM_PC98 # NEC PC9800 partitioning options GEOM_RAID3 # RAID3 functionality. options GEOM_SHSEC # Shared secret. diff --git a/sys/conf/files b/sys/conf/files index 08309bc..44301a7 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1260,6 +1260,7 @@ geom/part/g_part.c standard geom/part/g_part_if.m standard geom/part/g_part_apm.c optional geom_part_apm geom/part/g_part_gpt.c optional geom_part_gpt +geom/part/g_part_mbr.c optional geom_part_mbr geom/raid3/g_raid3.c optional geom_raid3 geom/raid3/g_raid3_ctl.c optional geom_raid3 geom/shsec/g_shsec.c optional geom_shsec diff --git a/sys/conf/options b/sys/conf/options index bbb1255..c5a524d 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -89,6 +89,7 @@ GEOM_MULTIPATH opt_geom.h GEOM_NOP opt_geom.h GEOM_PART_APM opt_geom.h GEOM_PART_GPT opt_geom.h +GEOM_PART_MBR opt_geom.h GEOM_PC98 opt_geom.h GEOM_RAID3 opt_geom.h GEOM_SHSEC opt_geom.h |