summaryrefslogtreecommitdiff
path: root/archival (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - remove functions marked as LEGACY in SUSv3 and use their modern counterparts.Bernhard Reutner-Fischer2006-12-121-5/+5
|
* fix support for globally disabling --long-options.Denis Vlasenko2006-11-291-4/+3
| | | | (disabling them saves ~4K on fully configured bbox)
* tar: fix misplaced --exclude long option definitionDenis Vlasenko2006-11-271-4/+9
|
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-273-4/+4
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-278-23/+19
|
* small fixes:Denis Vlasenko2006-11-261-1/+1
| | | | | | fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc.
* tar: refuse to untar files with "/../" componentsDenis Vlasenko2006-11-261-1/+6
|
* tar: correctly skip (and warn about) pax headers.Denis Vlasenko2006-11-262-20/+35
| | | | | plug memory leak. save 50 bytes. Wooohooo! we finally can unpack kernel tarballs!
* tar: add support for FEATURE_TAR_GNU_EXTENSIONS so than we can saveDenis Vlasenko2006-11-251-25/+98
| | | | | | | long names now. We were able to read such tars, but not create. +275 bytes. Without FEATURE_TAR_GNU_EXTENSIONS: -25 bytes. We still cannot unpack Linux kernels, but not for long ;)
* tar: small fix and small optimizationDenis Vlasenko2006-11-252-12/+10
|
* tar: abort if tarring up file larger that 64GbDenis Vlasenko2006-11-251-42/+35
| | | | (otherwise we will produce garbled tarfile)
* tar: fix multiple -t and/or -v options handling.Denis Vlasenko2006-11-241-36/+21
| | | | do not process list of files to tar up in reverse order.
* tar: sanitize option handlingDenis Vlasenko2006-11-242-125/+87
|
* tar: buglet fixDenis Vlasenko2006-11-241-1/+1
|
* tar: fix and sanitize handling of long filenames/linknamesDenis Vlasenko2006-11-242-21/+46
| | | | | | | | | (GNU extensions 'K' and 'L'). We correctly handle them when untarring now, but unfortunately we still don't use them when tarring! That stupid 100 char limit is still there! The biggest problem is that we don't support 'pax' tar format. Linux kernel tarballs are in this format... shame
* tar: small fixes:Denis Vlasenko2006-11-241-23/+23
| | | | | * size-optimize mapping code * kill double close
* tar: cache [ug]id->username/groupname mappings. Cuts down amountDenis Vlasenko2006-11-241-6/+3
| | | | | of open/read/close of /etc/passwd and /etc/group dramatically (we were rereading those for each untarred file!!!)
* tar: cry murder and bail out if file shrinks under us while we tar it upDenis Vlasenko2006-11-241-2/+12
|
* header_verbose_list: stop truncating file size in listingDenis Vlasenko2006-11-243-28/+26
|
* tar:Denis Vlasenko2006-11-242-179/+220
| | | | | | | | | * unpack: handle tar header fields which are not NUL terminated * pack: handle 4+GB files correctly * pack: refuse to store 101+ softlinks (was truncating link target name) * pack: mask mode with 07777
* insmod_ng_main: -80 bytes. Stopp mmapping, use xmalloc_open_read_close().Denis Vlasenko2006-11-211-7/+6
|
* cpio: (allegedly) fix bug 0001095:Denis Vlasenko2006-11-212-40/+55
| | | | "cpio hardlink support and possible memory leak fix"
* rename: compare_string_array -> index_in_str_arrayDenis Vlasenko2006-11-051-1/+1
| | | | | introduce index_in_substr_array and use it in iproute2
* recursive_action: add depth paramDenis Vlasenko2006-10-271-2/+2
| | | | chmod: match coreutils versus following links
* last nail into error_msg() (de)capitalizationDenis Vlasenko2006-10-271-8/+8
|
* rename functions to more understandable namesDenis Vlasenko2006-10-261-2/+2
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-2015-24/+24
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-143-10/+10
|
* bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko2006-10-122-2/+2
| | | | Renaming...
* style fixesDenis Vlasenko2006-10-122-6/+5
|
* small style fixesDenis Vlasenko2006-10-122-4/+8
|
* od: provide full-blown od from coreutils if CONFIG_DESKTOPDenis Vlasenko2006-10-101-2/+0
|
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-104-53/+70
|
* correct largefile support, add comments about it.Denis Vlasenko2006-10-082-4/+3
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-0812-55/+50
|
* build system overhaulDenis Vlasenko2006-10-057-233/+131
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-033-3/+3
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-039-22/+22
| | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
* random style fixesDenis Vlasenko2006-10-031-1/+1
|
* gzip: add a bit of comment. The code itselfDenis Vlasenko2006-10-011-4/+8
| | | | is too bloated to work on it...
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-0111-64/+103
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* dpkg: fix use-after-free (bug 939)Denis Vlasenko2006-09-301-7/+4
|
* vconfig: fix bug 701 (I be damned if I understand it)Denis Vlasenko2006-09-301-6/+6
|
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-293-7/+7
|
* dpkg: style fixes; short -> int (generated code is smaller)Denis Vlasenko2006-09-281-54/+54
|
* dpkg: reduce bss usage by ~130 kbytes (yes, kilobytes!)Denis Vlasenko2006-09-281-76/+87
| | | | | | at the cost of ~100 bytes of text. Improves friendliness to nommu systems. (Dunno whether nommu people ever use dpkg, though...)
* usage.h: remove ugly tricks. We have USE_FEATURE_xxx now.Denis Vlasenko2006-09-272-5/+7
| | | | Few bugs are now exposed...
* silly switch style fixDenis Vlasenko2006-09-273-5/+5
|
* bb_askpass: shorten static password buffer. 256 is way too large.Denis Vlasenko2006-09-231-1/+1
| | | | | simplify code a bit.
* gzip: getopt_ulflags'isationDenis Vlasenko2006-09-221-35/+27
|