aboutsummaryrefslogtreecommitdiff
path: root/archival/cpio.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* cpio: optional support for writing cpio files in newc format.Denis Vlasenko2008-04-051-17/+208
| | | | | | | | | | | | | | by pascal.bellard AT ads-lu.com. function old new delta cpio_main 247 1122 +875 cpio_pad4 - 58 +58 gnu_dev_major 66 99 +33 gnu_dev_minor 38 57 +19 packed_usage 23964 23978 +14 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 4/0 up/down: 999/0) Total: 999 bytes
* add -fvisibility=hidden to CC flags, mark XXX_main functionsDenis Vlasenko2007-10-111-1/+1
| | | | | EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so
* don't pass argc in getopt32, it's superfluousDenis Vlasenko2007-08-181-1/+1
| | | | | | | | (add/remove: 0/0 grow/shrink: 12/131 up/down: 91/-727) Total: -636 bytes text data bss dec hex filename 773469 1058 11092 785619 bfcd3 busybox_old 772644 1058 11092 784794 bf99a busybox_unstripped
* delete tons of extra #includesDenis Vlasenko2007-05-311-12/+8
|
* usage.c: remove reference to busybox.hDenis Vlasenko2007-05-261-1/+1
| | | | | *: s/include "busybox.h"/include "libbb.h"
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-031-0/+1
| | | | no preceding prototype
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-271-1/+1
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-1/+1
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-2/+2
| | | | | | | | 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.
* These should have been part of 15767 too.Rob Landley2006-08-031-1/+1
|
* Add one-line GPL boilerplate to numerous (but not all yet) source files."Robert P. J. Day"2006-07-121-13/+1
|
* Change llist_add_* to take the address of the list rather than returning the newRob Landley2006-05-261-1/+1
| | | | head, and change all the callers.
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-1/+1
| | | | definitions. (That should only be on prototypes.)
* Cleanup patch by Bernhard Fischer, removing unnecessary includes ofRob Landley2005-09-111-9/+8
| | | | getopt.h, whitespace changes, typos, etc.
* s/fileno\(stdin\)/STDIN_FILENO/gEric Andersen2004-03-271-1/+1
| | | | s/fileno\(stdout\)/STDOUT_FILENO/g
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-2/+2
|
* Fix option handling, -i or -t must be given, if both ignore the -t.Glenn L McGrath2004-02-251-39/+44
| | | | Use bb_getopt_ulflags.
* Dont unlink when testing !Glenn L McGrath2003-08-281-5/+15
| | | | | | | Always preserve creation date Disable the -p option its for modification date Remove some cpio header debugging noise Syncronise file listing behaviour with upstream.
* Major coreutils update.Manuel Novoa III2003-03-191-2/+2
|
* rpm applet by Laurence AndersonGlenn L McGrath2002-12-101-159/+1
|
* Move add_to_list from libunarchive to libbb so it can be of more general use ↵Glenn L McGrath2002-12-081-1/+1
| | | | (eg ifupdown). Changed the name to llist_add_to as i plan on adding more llist_ functions as needed (e.g. llist_free).
* Change filter paramaters, filters can be more powefull nowGlenn L McGrath2002-11-041-3/+3
|
* Abstract read and seek in unarchiving code, convert bunzip to file ↵Glenn L McGrath2002-11-031-5/+7
| | | | descriptors, support tar -j
* New common unarchive code.Glenn L McGrath2002-09-251-36/+180
|
* Recovering from my previous commitGlenn L McGrath2001-10-251-0/+1
|
* unarchive function changed to support both exclude and include lists, ↵Glenn L McGrath2001-10-131-1/+1
| | | | applets that use unarchive changed to match.
* Allow the unarchive() extract_list variable to be NULL, meaning extract allGlenn L McGrath2001-07-141-6/+9
|
* Allow unarchive to redirect stdout (tobe used by dpkg applet)Glenn L McGrath2001-07-111-1/+1
|
* Nore unarchive (and doc) fixes from Laurence AndersonGlenn L McGrath2001-06-241-4/+3
|
* cpio applet, and changes to associated codeGlenn L McGrath2001-06-221-0/+93