aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mkuzip
Commit message (Collapse)AuthorAgeFilesLines
* Support character device as input file.Max Khon2007-03-061-7/+21
| | | | | | | PR: 103500 Notes: svn path=/head/; revision=167272
* Markup fixes.Ruslan Ermilov2006-09-291-1/+5
| | | | Notes: svn path=/head/; revision=162792
* A few minor corrections to the mkuzip.8 man page.Maxim Sobolev2006-03-171-25/+24
| | | | | | | | PR: 92576 Submitted by: Stefan Bethke Notes: svn path=/head/; revision=156818
* Tell the user exactly where the problem was.Pawel Jakub Dawidek2006-01-301-5/+5
| | | | Notes: svn path=/head/; revision=155074
* - check for geom_uzip module presence using kldstat -m.Max Khon2005-05-111-3/+3
| | | | | | | | | | 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. Notes: svn path=/head/; revision=146107
* Make WARNS=6 clean, which should make it compiling on amd64.Maxim Sobolev2005-05-022-4/+4
| | | | | | | Submitted by: Matteo Riondato <rionda@gufi.org> Notes: svn path=/head/; revision=145808
* Sort sections.Ruslan Ermilov2005-01-181-2/+2
| | | | Notes: svn path=/head/; revision=140420
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Fix build: s/mkunzip.8/mkuzip.8/Marcel Moolenaar2004-09-121-1/+1
| | | | Notes: svn path=/head/; revision=135092
* Normalize the manpage.Ruslan Ermilov2004-09-111-20/+23
| | | | | | | Reviewed by: sobomax Notes: svn path=/head/; revision=135087
* Normalize the makefile.Ruslan Ermilov2004-09-111-2/+2
| | | | | | | Reviewed by: sobomax Notes: svn path=/head/; revision=135086
* o Print more info in the verbose mode;Maxim Sobolev2004-09-101-31/+32
| | | | | | | | | | | 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. Notes: svn path=/head/; revision=135058
* Clarify/extend in several places and make sure that everything matches reality.Maxim Sobolev2004-09-101-16/+32
| | | | Notes: svn path=/head/; revision=135055
* Add mkuzip(8), non-GPL utility to compress filesystem images for use withMaxim Sobolev2004-09-103-0/+354
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. ;-) Notes: svn path=/head/; revision=135045