Remove cross-references to GBDE

This commit is contained in:
Poul-Henning Kamp 2024-05-07 07:35:33 +00:00
parent 6580f5c38d
commit 66bee50af7
7 changed files with 2 additions and 26 deletions

View File

@ -1242,10 +1242,8 @@ after the first time a provider is attached and before it is
initialized in this way.
.Sh SEE ALSO
.Xr crypto 4 ,
.Xr gbde 4 ,
.Xr geom 4 ,
.Xr loader.conf 5 ,
.Xr gbde 8 ,
.Xr geom 8 ,
.Xr crypto 9
.Sh HISTORY

View File

@ -116,7 +116,6 @@ detected and connected, making the secret available via the
device.
.Sh SEE ALSO
.Xr geom 4 ,
.Xr gbde 8 ,
.Xr geom 8 ,
.Xr newfs 8
.Sh HISTORY

View File

@ -44,7 +44,6 @@ geli_start()
if [ -z "${geli_tries}" ]; then
if [ -n "${geli_attach_attempts}" ]; then
# Compatibility with rc.d/gbde.
geli_tries=${geli_attach_attempts}
else
geli_tries=`${SYSCTL_N} kern.geom.eli.tries`

View File

@ -125,27 +125,9 @@ To get details about the failure,
should be called with the
.Fl v
option.
.Sh EXAMPLES
.Dq GEOMify
the
.Dq Li fd0
device and use
.Xr gbde 8
to encrypt data on a floppy disk.
.Bd -literal -offset indent
ggatel create -u 5 /dev/fd0
gbde init /dev/ggate5
gbde attach ggate5
newfs /dev/ggate5.bde
mount /dev/ggate5.bde /secret
cp /private/foo /secret/
umount /secret
gbde detach ggate5
ggatel destroy -u 5
.Ed
.Sh SEE ALSO
.Xr geom 4 ,
.Xr gbde 8 ,
.Xr ggatec 8 ,
.Xr ggated 8 ,
.Xr mount 8 ,

View File

@ -111,8 +111,6 @@ the case for multipathing for example,
GEOM classes that consume a single provider and provide single
provider, like
.Xr geli 8 ,
and
.Xr gbde 8 ,
the identifier should be formed by attaching that provider's class
name to the ident of the underlying provider,
.It

View File

@ -33,7 +33,7 @@
* cache.
*
* This used to be vnodes, but we need non-vnode code to be able
* to use the buffer cache as well, specifically geom classes like gbde,
* to use the buffer cache as well, specifically geom classes like
* raid3 and raid5.
*
* All vnodes will contain a bufobj initially, but down the road we may

View File

@ -78,7 +78,7 @@ void disk_err(struct bio *bp, const char *what, int blkdone, int nl);
* only if they point at exactly the same physical storage, this is
* the case for multipathing for example,
* - GEOM classes that consumes single providers and provide single
* providers, like geli, gbde, should just attach class name to the
* providers, like geli, should just attach class name to the
* ident of the underlying provider,
* - ident is an ASCII string (is printable),
* - ident is optional and applications can't relay on its presence.