summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2016-02-24 00:39:36 +0000
committersobomax <sobomax@FreeBSD.org>2016-02-24 00:39:36 +0000
commit85ce861e4613ecbb5f1d245ddcbf9078c25c082e (patch)
treed648a3c5a9492053898ce9ba17760eb93da53df6 /share
parent419105461bfc9346d5fbd18829ac89828270a957 (diff)
downloadFreeBSD-src-85ce861e4613ecbb5f1d245ddcbf9078c25c082e.zip
FreeBSD-src-85ce861e4613ecbb5f1d245ddcbf9078c25c082e.tar.gz
Obsolete mkulzma(8) and geom_uncompress(4), their functionality
is now provided by mkuzip(8) and geom_uzip(4) respectively. MFC after: 1 month
Diffstat (limited to 'share')
-rw-r--r--share/man/man4/Makefile1
-rw-r--r--share/man/man4/geom_map.42
-rw-r--r--share/man/man4/geom_uncompress.4118
3 files changed, 1 insertions, 120 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index 2c04dd3..2508da0 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -165,7 +165,6 @@ MAN= aac.4 \
geom_fox.4 \
geom_linux_lvm.4 \
geom_map.4 \
- geom_uncompress.4 \
geom_uzip.4 \
gif.4 \
gpio.4 \
diff --git a/share/man/man4/geom_map.4 b/share/man/man4/geom_map.4
index 47b2aa8..b84f90a 100644
--- a/share/man/man4/geom_map.4
+++ b/share/man/man4/geom_map.4
@@ -78,7 +78,7 @@ or by using
0 DISK cfid0 8388608 4 hd 0 sc 0
1 MAP map/config 131072 4 i 5 o 8257536 entry 0 dsize 131072
1 MAP map/rootfs 6881280 4 i 4 o 1376256 entry 0 dsize 6881280
-2 UNCOMPRESS map/rootfs.uncompress 18677760 512
+2 UZIP map/rootfs.uzip 18677760 512
1 MAP map/kernel 1114112 4 i 3 o 262144 entry 0 dsize 1114112
1 MAP map/upgrade 7995392 4 i 2 o 262144 entry 0 dsize 7995392
1 MAP map/factory 65536 4 i 1 o 196608 entry 0 dsize 65536
diff --git a/share/man/man4/geom_uncompress.4 b/share/man/man4/geom_uncompress.4
deleted file mode 100644
index af12d27..0000000
--- a/share/man/man4/geom_uncompress.4
+++ /dev/null
@@ -1,118 +0,0 @@
-.\" Copyright (c) 2006, Ceri Davies <ceri@FreeBSD.org>
-.\" Copyright (c) 2014, Luiz Otavio O Souza <loos@FreeBSD.org>
-.\" All rights reserved.
-.\"
-.\" Redistribution and use in source and binary forms, with or without
-.\" modification, are permitted provided that the following conditions
-.\" are met:
-.\" 1. Redistributions of source code must retain the above copyright
-.\" notice, this list of conditions and the following disclaimer.
-.\" 2. Redistributions in binary form must reproduce the above copyright
-.\" notice, this list of conditions and the following disclaimer in the
-.\" documentation and/or other materials provided with the distribution.
-.\"
-.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
-.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
-.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-.\" SUCH DAMAGE.
-.\"
-.\" $FreeBSD$
-.\"
-.Dd January 9, 2014
-.Dt GEOM_UNCOMPRESS 4
-.Os
-.Sh NAME
-.Nm geom_uncompress
-.Nd "GEOM based compressed disk images"
-.Sh SYNOPSIS
-To compile this driver into the kernel, place the following line in your
-kernel configuration file:
-.Bd -ragged -offset indent
-.Cd "options GEOM_UNCOMPRESS"
-.Ed
-.Pp
-Alternatively, to load the driver as a module at boot time, place the
-following line in
-.Xr loader.conf 5 :
-.Bd -literal -offset indent
-geom_uncompress_load="YES"
-.Ed
-.Sh DESCRIPTION
-The
-.Nm
-framework provides support for compressed read-only disk images.
-This allows significant storage savings at the expense of a little CPU
-time on each read.
-Data written in the GEOM label area allows
-.Nm
-to detect compressed images which have been created with
-.Xr mkulzma 8
-or
-.Xr mkuzip 8
-and presented to the kernel as a logical disk device via
-.Xr md 4 .
-.Nm
-creates a unique
-.Pa md#.uncompress
-device for each image.
-.Pp
-The
-.Nm
-device is subsequently used by the
-.Fx
-kernel to access the disk images.
-The
-.Nm
-driver does not allow write operations to the underlying disk image.
-To check which
-.Xr md 4
-devices match a given
-.Nm
-device:
-.Bd -literal -offset indent
-# geom uncompress list
-Geom name: md0.uncompress
-Providers:
-1. Name: md0.uncompress
- Mediasize: 52428800 (50M)
- Sectorsize: 512
- Mode: r1w0e0
-Consumers:
-1. Name: md0
- Mediasize: 20864000 (20M)
- Sectorsize: 512
- Mode: r1w0e0
-.Ed
-.Sh SEE ALSO
-.Xr GEOM 4 ,
-.Xr md 4 ,
-.Xr geom 8 ,
-.Xr mkulzma 8 ,
-.Xr mkuzip 8
-.Sh AUTHORS
-.An -nosplit
-The
-.Nm
-driver was written by
-.An Max Khon Aq Mt fjoe@FreeBSD.org
-as
-.Xr geom_uzip 4 .
-.An Aleksandr Rybalko Aq Mt ray@FreeBSD.org
-copied it over as
-.Nm
-and added LZMA functionality .
-This manual page was written by
-.An Ceri Davies Aq Mt ceri@FreeBSD.org
-for the
-.Xr geom_uzip 4 ,
-and modified by
-.An Luiz Otavio O Souza Aq Mt loos@FreeBSD.org
-to match
-.Nm .
OpenPOWER on IntegriCloud