summaryrefslogtreecommitdiff
path: root/archival/libunarchive (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* build system overhaulDenis Vlasenko2006-10-053-119/+59
|
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-016-28/+51
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* vconfig: fix bug 701 (I be damned if I understand it)Denis Vlasenko2006-09-301-6/+6
|
* silly switch style fixDenis Vlasenko2006-09-271-1/+1
|
* whitespace cleanupDenis Vlasenko2006-09-171-2/+2
|
* removed a lot of trailing \n in bb_msg() calls. It is addedDenis Vlasenko2006-09-062-2/+2
| | | | | automatically by function itself.
* - strip 399424 off the bss by making decompress_uncompress buffers config ↵Bernhard Reutner-Fischer2006-09-061-12/+10
| | | | | | | | | | | | | | | | | | | buffers. Compile tested (too lazy to look for a small .Z on the net). $ size busybox.old busybox text data bss dec hex filename 859555 10232 645732 1515519 171fff busybox.old 859683 10232 246308 1116223 11083f busybox $ make bloatcheck function old new delta uncompress 1036 1160 +124 inbuf 2116 4 -2112 outbuf 4100 4 -4096 htab 131072 - -131072 codetab 262144 - -262144 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 1/2 up/down: 124/-399424) Total: -399300 bytes
* tar: revert older fix (non-portable), added new one.Denis Vlasenko2006-09-032-6/+38
| | | | | testsuite tar-extracts-all-subdirs now passes.
* tar: tar xf foo.tar dir/dir did not extract all subdirs.Denis Vlasenko2006-09-021-1/+1
| | | | | Added testsuite entry for this
* Use xopen3() instead of an after-the-fact chown.Rob Landley2006-08-041-6/+2
|
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-036-46/+13
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* "formated" -> "formatted" throughout the code base."Robert P. J. Day"2006-07-203-39/+39
|
* Cleaup read() and write() variants, plus a couple of new functions likeRob Landley2006-07-1612-50/+24
| | | | xlseek and fdlength() for the new mkswap.
* Add one-line GPL boilerplate to numerous (but not all yet) source files."Robert P. J. Day"2006-07-1215-143/+24
|
* Fix tar so it can extract git-generated tarballs, based on a suggestionRob Landley2006-07-061-5/+4
| | | | from Erik Frederiksen.
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-0225-5/+25
|
* Remove all usage of the "register" storage class specifier."Robert P. J. Day"2006-07-011-1/+1
|
* Various cleanups I made while going through Erik Hovland's patch submissions,Rob Landley2006-06-251-63/+24
| | | | some of which are even from him. :)
* Since rangecoder is just a bunch of C functions, move it into the one userRob Landley2006-06-202-167/+144
| | | | | (decompress_unlzma.c). Also a slight #include cleanup, and I've been meaning to put #include <unistd.h> into libbb.h since it's so darn common...
* More size shrinkage.Rob Landley2006-05-296-52/+14
|
* Add SWAP_LE?? and SWAP_BE?? macros, and make things use them. Converts valuesRob Landley2006-05-291-4/+2
| | | | | to/from little endian or big endian, which is a NOP if that's what the current platform already is.
* Change llist_add_* to take the address of the list rather than returning the newRob Landley2006-05-262-3/+2
| | | | head, and change all the callers.
* - use ATTRIBUTE_ALWAYS_INLINE if requestedBernhard Reutner-Fischer2006-05-261-37/+6
| | | | - use shorter boilerplate while at it
* pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵Mike Frysinger2006-05-131-1/+1
| | | | mailing list
* Patch from Vladamir Oleynik, reducing memory consumption.Rob Landley2006-05-111-1/+1
|
* Patch from Dennis Vlasenko to add the option to compress help text.Rob Landley2006-04-271-0/+1
|
* Busybox is under the GPL.Rob Landley2006-04-141-7/+6
|
* - remove unneeded include, use shorter boilerplate while at it and alsoBernhard Reutner-Fischer2006-04-134-63/+17
| | | | | | | shrink filter_accept_reject_list() a tiny bit while at it. text data bss dec hex filename 59 0 0 59 3b filter_accept_reject_list.o 62 0 0 62 3e filter_accept_reject_list.o.orig
* Patch from Rob Sullivan to consolidate crc32 table generation.Rob Landley2006-04-102-45/+12
|
* - include proper headers.Bernhard Reutner-Fischer2006-04-052-28/+8
|
* - include proper prototypes in libunarchive.Bernhard Reutner-Fischer2006-04-023-14/+8
|
* - janitorial: huft_build is never used outside of decompress_unzip.c and has noBernhard Reutner-Fischer2006-04-021-0/+1
| | | | prototype (which suggests that it's of no general use) so make it static for now.
* - typos: s/compatability/compatibility/g;s/compatable/compatible/g;Bernhard Reutner-Fischer2006-04-021-2/+2
|
* - revert back to r14406Bernhard Reutner-Fischer2006-03-131-47/+53
|
* Patch from Denis Vlasenko turning static const int (which gets emitted intoRob Landley2006-03-101-1/+1
| | | | the busybox binary) into enums (which don't).
* Patch from Denis Vlasenko to make unlzma smaller.Rob Landley2006-03-091-9/+29
|
* - backout using features which are not available with the previous stableBernhard Reutner-Fischer2006-03-091-2/+6
| | | | version of make (3.71.1).
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-0628-31/+31
| | | | definitions. (That should only be on prototypes.)
* Patch from Robert P. Day, moving byte order checks to use platform.h macros.Rob Landley2006-03-041-2/+2
|
* - use absolute path for top_builddir and top_srcdir.Bernhard Reutner-Fischer2006-03-021-0/+4
| | | | Fixes make trying to include the very same file in an endless loop.
* - fixes parallel builds (make -j)Bernhard Reutner-Fischer2006-03-011-54/+42
| | | | - use less resources for the buildsystem itself
* Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)Rob Landley2006-03-011-1/+1
| | | | from before "if(x) free(x)".
* use bb_xstrndup vs strndup. Thanks rfelker."Vladimir N. Oleynik"2006-03-011-1/+1
|
* Bug 640: a filename of length exactly 100 could bleed into the next field onRob Landley2006-02-201-19/+11
| | | | | display or extract. (Only shows up when no gnu longname extension, either because it's disabled or because tarball hasn't got it.)
* The gentoo security guys found another way to segfault busybox's decompressionRob Landley2006-02-201-1/+1
| | | | | code: we can do a null dereference if one of our huffman tables has all zero length codes. This fixes it. (Thanks solar.)
* Fix for an integer overflow bug that could cause a segfault on certainRob Landley2006-02-171-1/+1
| | | | | | | | | | pathological archives. (Unlikely to have security implications, the only way to trigger it basically wound up doing memset(dbuf,x,2^31) and triggering an immediate segfault. The test basically gives us a more polite error message.) Thanks to Ned Ludd and the Gentoo security guys for finding this.
* The tendency of vi to auto-indent can be really annoying at times.Rob Landley2006-02-171-75/+75
|
* More whitespace than you can possibly imagine...Rob Landley2006-02-171-18/+145
|
* make the build system puuuuuuuuuuurtyMike Frysinger2006-02-021-3/+2
|
* sort out yet more type issuesEric Andersen2006-01-301-1/+1
|