diff options
author | ru <ru@FreeBSD.org> | 2006-10-06 10:43:42 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-10-06 10:43:42 +0000 |
commit | ec61c3c64a64d1a499de7c194ee242393df43770 (patch) | |
tree | d3165073c1777cbedd56a06f4572b428aa02b984 | |
parent | 157dbabffd25f48ba0aea912640375423bb7bf26 (diff) | |
download | FreeBSD-src-ec61c3c64a64d1a499de7c194ee242393df43770.zip FreeBSD-src-ec61c3c64a64d1a499de7c194ee242393df43770.tar.gz |
Added the GEOM_CACHE option.
Reminded by: pjd
-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 5143ba2..ae774f5 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -124,6 +124,7 @@ options GEOM_AES # Don't use, use GEOM_BDE options GEOM_APPLE # Apple partitioning options GEOM_BDE # Disk encryption. options GEOM_BSD # BSD disklabels +options GEOM_CACHE # Disk cache. options GEOM_CONCAT # Disk concatenation. options GEOM_ELI # Disk encryption. options GEOM_FOX # Redundant path mitigation diff --git a/sys/conf/files b/sys/conf/files index 2e689b7..455b224 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1153,6 +1153,7 @@ geom/bde/g_bde.c optional geom_bde geom/bde/g_bde_crypt.c optional geom_bde geom/bde/g_bde_lock.c optional geom_bde geom/bde/g_bde_work.c optional geom_bde +geom/cache/g_cache.c optional geom_cache geom/concat/g_concat.c optional geom_concat geom/eli/g_eli.c optional geom_eli geom/eli/g_eli_crypto.c optional geom_eli diff --git a/sys/conf/options b/sys/conf/options index 1855f95..123cee8 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -77,6 +77,7 @@ GEOM_AES opt_geom.h GEOM_APPLE opt_geom.h GEOM_BDE opt_geom.h GEOM_BSD opt_geom.h +GEOM_CACHE opt_geom.h GEOM_CONCAT opt_geom.h GEOM_ELI opt_geom.h GEOM_FOX opt_geom.h |