History log of /freebsd-10.0-release/usr.bin/mkuzip/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
259065 07-Dec-2013 gjb

- Copy stable/10 (r259064) to releng/10.0 as part of the
10.0-RELEASE cycle.
- Update __FreeBSD_version [1]
- Set branch name to -RC1

[1] 10.0-CURRENT __FreeBSD_version value ended at '55', so
start releng/10.0 at '100' so the branch is started with
a value ending in zero.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


221832 13-May-2011 ru

Fixed an embedded shell script.

Reviewed by: sobomax


208291 19-May-2010 uqs

mdoc: consistently spell our email addresses <foo@FreeBSD.org>

Reviewed by: ru


201386 02-Jan-2010 ed

Build usr.bin/ with WARNS=6 by default.

Also add some missing $FreeBSD$ to keep svn happy.


167272 06-Mar-2007 fjoe

Support character device as input file.

PR: 103500


162792 29-Sep-2006 ru

Markup fixes.


156818 17-Mar-2006 sobomax

A few minor corrections to the mkuzip.8 man page.

PR: 92576
Submitted by: Stefan Bethke


155074 30-Jan-2006 pjd

Tell the user exactly where the problem was.


146107 11-May-2005 fjoe

- check for geom_uzip module presence using kldstat -m.
kldstat -m finds geom_uzip module even if it is compiled in statically.
- create output file with x bit set.
- build mkuzip on all architectures (verified with "make universe").
- fix typo in info message.


145808 02-May-2005 sobomax

Make WARNS=6 clean, which should make it compiling on amd64.

Submitted by: Matteo Riondato <rionda@gufi.org>


140420 18-Jan-2005 ru

Sort sections.


140368 17-Jan-2005 ru

Added the EXIT STATUS section where appropriate.


135092 12-Sep-2004 marcel

Fix build: s/mkunzip.8/mkuzip.8/


135087 11-Sep-2004 ru

Normalize the manpage.

Reviewed by: sobomax


135086 11-Sep-2004 ru

Normalize the makefile.

Reviewed by: sobomax


135058 10-Sep-2004 sobomax

o Print more info in the verbose mode;

o use zlib(3) function which computes maximum length of the output
buffer instead of rolling own version;

o allow size of input file to be not multiple of cluster size by applying
zero padding.


135055 10-Sep-2004 sobomax

Clarify/extend in several places and make sure that everything matches reality.


135045 10-Sep-2004 sobomax

Add mkuzip(8), non-GPL utility to compress filesystem images for use with
geom_uzip module. This is based on utility I wrote some 3 years ago for a
hack for md(4), which functionally was close to what geom_uzip does today.

Since I don't have a time to test that it compiles/works on other arches,
stick it to i386 only. Will do it later.

Unlike original cloop util, this one embedds FreeBSD-compatible shell code
into the generated image, not Linux one. Unfortunately severe space
restriction imposed by the CLOOP format doesn't allow to put conditional
code which will work both on Linux and FreeBSD. In fact it was quite a
challenge to fit necessary FreeBSD code into 127 bytes. ;-)