summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2004-05-20 10:37:13 +0000
committerpjd <pjd@FreeBSD.org>2004-05-20 10:37:13 +0000
commit3e714a6487c6937bd528d4d2cc70041ecd78f005 (patch)
treed57bd999a717f654ff85132df5b3169c0f1d2c7d
parent87ec5ee8d69954a4377a00393de2c057bce31633 (diff)
downloadFreeBSD-src-3e714a6487c6937bd528d4d2cc70041ecd78f005.zip
FreeBSD-src-3e714a6487c6937bd528d4d2cc70041ecd78f005.tar.gz
- Connect geom(8) and its libraries to the build.
- Connect geom_stripe and geom_nop modules to the build. - Connect STRIPE and NOP classes to the LINT build. - Disconnect gconcat(8) from the build. Supported by: Wheel - Open Technologies - http://www.wheel.pl
-rw-r--r--sbin/Makefile2
-rw-r--r--sys/conf/NOTES2
-rw-r--r--sys/conf/files2
-rw-r--r--sys/conf/options2
-rw-r--r--sys/modules/geom/Makefile2
5 files changed, 9 insertions, 1 deletions
diff --git a/sbin/Makefile b/sbin/Makefile
index dc4e94d..533db1c 100644
--- a/sbin/Makefile
+++ b/sbin/Makefile
@@ -29,7 +29,7 @@ SUBDIR= adjkerntz \
fsdb \
fsirand \
gbde \
- gconcat \
+ geom \
ggate \
${_gpt} \
growfs \
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index f35b058..df2eef6 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -126,7 +126,9 @@ options GEOM_FOX # Redundant path mitigation
options GEOM_GATE # Userland services.
options GEOM_GPT # GPT partitioning
options GEOM_MBR # DOS/MBR partitioning
+options GEOM_NOP # Test class.
options GEOM_PC98 # NEC PC9800 partitioning
+options GEOM_STRIPE # Disk striping.
options GEOM_SUNLABEL # Sun/Solaris partitioning
options GEOM_VOL # Volume names from UFS superblock
diff --git a/sys/conf/files b/sys/conf/files
index ae59531..74e4ef4 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -919,6 +919,8 @@ crypto/rijndael/rijndael-api-fst.c optional geom_bde
crypto/sha2/sha2.c optional geom_bde
geom/concat/g_concat.c optional geom_concat
geom/gate/g_gate.c optional geom_gate
+geom/nop/g_nop.c optional geom_nop
+geom/stripe/g_stripe.c optional geom_stripe
geom/geom_aes.c optional geom_aes
geom/geom_apple.c optional geom_apple
geom/geom_bsd.c optional geom_bsd
diff --git a/sys/conf/options b/sys/conf/options
index dbe441e..f527029 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -74,7 +74,9 @@ GEOM_GATE opt_geom.h
GEOM_GPT opt_geom.h
GEOM_MBR opt_geom.h
GEOM_MIRROR opt_geom.h
+GEOM_NOP opt_geom.h
GEOM_PC98 opt_geom.h
+GEOM_STRIPE opt_geom.h
GEOM_SUNLABEL opt_geom.h
GEOM_VOL opt_geom.h
HW_WDOG
diff --git a/sys/modules/geom/Makefile b/sys/modules/geom/Makefile
index 06521b8..039ae29 100644
--- a/sys/modules/geom/Makefile
+++ b/sys/modules/geom/Makefile
@@ -9,7 +9,9 @@ SUBDIR= geom_apple \
geom_gate \
geom_gpt \
geom_mbr \
+ geom_nop \
geom_pc98 \
+ geom_stripe \
geom_sunlabel \
geom_vol_ffs
OpenPOWER on IntegriCloud