aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Support for bziped debs, i.e. use .tar.bz2 instead .tar.gz internallyGlenn L McGrath2002-11-051-16/+34
|
* Fail silently if a partial tar header is read as tar.bz2 is leaving trailing ↵Glenn L McGrath2002-11-057-5/+105
| | | | junk (not sure why), add some missing files
* enable .tar.bz2 for dpkg-debGlenn L McGrath2002-11-057-24/+45
|
* Change filter paramaters, filters can be more powefull nowGlenn L McGrath2002-11-047-25/+82
|
* Call lseek directly rather than via data_align()Glenn L McGrath2002-11-031-1/+1
|
* Abstract read and seek in unarchiving code, convert bunzip to file ↵Glenn L McGrath2002-11-0328-330/+464
| | | | descriptors, support tar -j
* Fix #define syntaxGlenn L McGrath2002-11-032-2/+2
|
* Move data_extract_all_prefix to dpkg, its only used there.Glenn L McGrath2002-11-034-39/+15
|
* Add copyright notice and license, use strcat+strcpy instead of sprintfGlenn L McGrath2002-11-031-8/+21
|
* Use xread_char to save a few bytes, fix indenting of commentsGlenn L McGrath2002-11-031-23/+12
|
* Move bunzip2 idecompression code to libunarchiveGlenn L McGrath2002-11-034-1787/+1815
|
* Test for holes in swapfilesEric Andersen2002-11-031-0/+12
| | | | -Erik
* Make uncompress a seperate applet so it doesnt pull in all the gunzip codeGlenn L McGrath2002-11-019-9/+153
|
* Allow short reads when filling compress bufferGlenn L McGrath2002-11-012-2/+2
|
* Allow the .Z prefix if compress support enabledGlenn L McGrath2002-11-011-5/+9
|
* Make it a fatal error if bad chksum or crc, if not we should return an error ↵Glenn L McGrath2002-11-011-2/+2
| | | | code
* Report errror if the first magic character doesnt matchGlenn L McGrath2002-11-011-0/+3
|
* sync to udhcp 0.9.8Russ Dill2002-10-318-160/+243
|
* Use a nifty macro to make testing gcc features simplerEric Andersen2002-10-301-9/+8
| | | | | and much easier to read. -Erik
* FormattingEric Andersen2002-10-271-5/+5
|
* Update the webpageEric Andersen2002-10-271-0/+40
| | | | -Erik
* last_patch64 from vodz:0_60_5Eric Andersen2002-10-261-15/+17
| | | | | | | | | | | | | The following usage from original user: $ ./busybox swapon -a Have typo problem: swapon: swapon: Operation not permitted But regular version: swapon: /dev/hda5: Operation not permitted Patch attached, reduced 9 bytes and advanced exit code also.
* A patch from Jouni Malinen to avoid some buffer overflows in vi,Eric Andersen2002-10-261-3/+9
| | | | closing bug #1270
* Ivan Popov noticed that handling of PREFIX was bad.Eric Andersen2002-10-261-1/+1
| | | | -Erik
* A bugfix from Danny Lepage:Eric Andersen2002-10-261-1/+1
| | | | | | | It seems that under busybox unstable, "tar -c -f - blabla" create a tar file named "-" instead of writing to stdout. The included patch should fix this.
* This patch from Magnus Damm fixed a long standing problemEric Andersen2002-10-251-1/+1
| | | | with freeing memory.
* Fix warningEric Andersen2002-10-221-0/+1
|
* mjn3 noticed that crond and crontab had #include <pwd.h> and #include <grp.h>Eric Andersen2002-10-222-4/+0
| | | | | | | but this conflicted with the internal pwd_.h and grp_.h. Removing these headers is correct, since the correct pwd/grp headers will be included via busybox.h -Erik
* vodz forgot to include the suid fieldEric Andersen2002-10-221-2/+2
|
* Apply patch from bug #1278 -- fix usage message for theEric Andersen2002-10-221-1/+1
| | | | start_stop_daemon applet.
* vodz writes:Eric Andersen2002-10-222-14/+2
| | | | | Oops... Last patch 63 have small typo (stable/devel) mixing. Attached patch removing lines from TODO also :)
* I committed the fflush in the wrong spot. I should go to bedEric Andersen2002-10-221-1/+1
| | | | | earlier so I don't screw up such easy stuff. -Erik
* last_patch63 from vodz: add in crond and crontab appletsEric Andersen2002-10-229-15/+1588
|
* Patch last_pach62 from vodz. This patch moves all the /proc parsingEric Andersen2002-10-228-312/+220
| | | | code into libbb so it can be shared by ps, top, etc, saving over 1.5k.
* Apply last_patch51_3 from vodzEric Andersen2002-10-221-1/+15
|
* Be absurdly careful about flushing stdout.Eric Andersen2002-10-221-2/+2
|
* Move unzip.c uncompress.c from libbb to archiveal/libunarchiveGlenn L McGrath2002-10-224-1213/+4
|
* gz_open is used anymore, use inflate directly, see how its done in ↵Glenn L McGrath2002-10-211-58/+0
| | | | get_header_tar_gz
* Dont try and make the "/" directoryGlenn L McGrath2002-10-191-2/+2
|
* Update dpkg to use new unarchive codeGlenn L McGrath2002-10-195-7/+85
|
* Fix exclude/include problemGlenn L McGrath2002-10-196-48/+36
|
* Find a string in a listGlenn L McGrath2002-10-191-0/+30
|
* Remove entries from the accept list as they are matched so we can determine ↵Glenn L McGrath2002-10-192-0/+14
| | | | if any files that were specified in the list wernt found.
* Dont use absolute pathname (dunno why i did that), fix tar filename/stdin ↵Glenn L McGrath2002-10-191-16/+25
| | | | problems
* Put bac kthe code that handles cases where a '-' wasnt specified prior to ↵Glenn L McGrath2002-10-181-0/+8
| | | | the options.
* Fix an obvious thinkoEric Andersen2002-10-181-1/+1
| | | | -Erik
* disambiguate a testEric Andersen2002-10-181-5/+5
|
* Fix needless formatting differences vs modutilsEric Andersen2002-10-181-8/+8
|
* Fix needless difference vs GNUEric Andersen2002-10-181-2/+2
|
* missed add for udhcpRuss Dill2002-10-141-0/+30
|