summaryrefslogtreecommitdiff
path: root/libbb (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix for broken handling off BusyBox's own pwd/grp implementationsRobert Griebl2002-06-045-5/+5
| | | | [Parts of this patch may overlap with my other two patches]
* Support old-style compress (.Z) files via libbb / unzip( ) callsRobert Griebl2002-05-191-0/+313
| | | | | | (configurable) - When enabled an applet "uncompress" is also made available (oddname to gunzip) [the cvs add for this file got lost somehow...]
* Support old-style compress (.Z) files via libbb / unzip( ) callsRobert Griebl2002-05-152-2/+18
| | | | | (configurable) - When enabled an applet "uncompress" is also made available (oddname to gunzip)
* Silly meEric Andersen2002-04-131-0/+1
|
* Stupid gcc always includes its own builtin strlen()...Eric Andersen2002-04-131-0/+6
|
* Completely rework the config system so that it no longer annoys me to work onEric Andersen2002-04-122-48/+74
| | | | | | | the busybox development tree. This eliminates the use of recursive make, and once again allows us to run 'make' in a subdirectory with the expected result. And things are now much faster too. Greatly improved IMHO... -Erik
* Fix devfs loop device supportEric Andersen2002-03-201-1/+1
|
* Reinitialize initial shift register value for on each pass.Eric Andersen2002-03-201-1/+3
| | | | -Erik
* Cleanup a libc5 compatibility hackEric Andersen2002-03-122-4/+4
|
* * libbb/xfuncs.c (xmalloc, xcalloc): Do not exit if a zero-length buffer isMatt Kraai2002-02-261-16/+5
| | | | | requested. (xrealloc): Simplify.
* chomp should only remove the newline if it occurs at the end of the input.Matt Kraai2002-01-021-3/+5
| | | | | | This was caught by the test suite (in sed/sed-aic-commands). * libbb/chomp.c: Revert to revision 1.5.
* unzip applet by Laurence AndersonGlenn L McGrath2002-01-021-25/+23
| | | | ----------------------------------------------------------------------
* optimize this a little bit.Eric Andersen2001-12-291-5/+3
|
* Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.Matt Kraai2001-12-203-12/+12
|
* Make cp and mv optionally preserve hard links.Matt Kraai2001-12-173-2/+31
|
* Open the source before creating the destination.Matt Kraai2001-12-111-8/+11
|
* If find_pid_by_name() had an error, it was returning -1, but storingEric Andersen2001-12-061-21/+9
| | | | | | | | that into a pid_t, which is unsigned on a number archs. Furthermore, find_pid_by_name() would _never_ return an error if the intended proces was "init", but instead would return 1, meaning we would fail to work on 2.4.x kernels running an initrd... -Erik
* More copyright and email addr cleanupsEric Andersen2001-12-064-9/+4
|
* Silly cosmetic problem in the commentEric Andersen2001-12-061-1/+0
|
* Commit my improvement on Rodney Brown's patch to g(un)zip, decreasingAaron Lehmann2001-12-061-26/+29
| | | | binary size.
* Simplify unzip(), remove unused checks and unneccessary variablesGlenn L McGrath2001-12-051-51/+27
|
* Simplify CRC table generationGlenn L McGrath2001-12-051-11/+5
|
* New version to cut size. Includes optional basename() compatibility, butManuel Novoa III2001-12-051-36/+27
| | | | enabling that would break the basename applet at least for one corner case.
* gunzip was incorrectly reporting a failed crc and length (discovered byGlenn L McGrath2001-11-291-0/+8
| | | | | Chang, Shu-Hao). The bitbuffer needs to be unwound after decompression, as it was eating into the crc/size field.
* Treat NUL as the end-of-line.Matt Kraai2001-11-201-1/+1
|
* Remove unnecessary errno handling.Matt Kraai2001-11-121-5/+0
|
* I forgot to add these. Part of the patch from vodzEric Andersen2001-11-101-0/+174
|
* Latest patch from vodz:Eric Andersen2001-11-102-193/+8
| | | | | | | -- reverse resolve network name and cache in route and ifconfig applets, fix print nslookup server name if compile without uClibc, fix route crashe 'route add', fix warnings compile networking and pwd_grp applets
* Introduce od and hexdump appletsGlenn L McGrath2001-11-022-1/+864
|
* Be extra pedantic about printing the correct type for an addressEric Andersen2001-10-271-2/+2
|
* rEcover from my previous commitGlenn L McGrath2001-10-251-7/+1
|
* Move libbb/unarchive functions to ./archival/libunarchiveGlenn L McGrath2001-10-251-627/+0
|
* Modify applets to use libunarchiveGlenn L McGrath2001-10-251-1/+1
|
* Major rework of the directory structure and the entire build system.Eric Andersen2001-10-2461-720/+331
| | | | -Erik
* Accomodate older glibc, which also lacks the module syscallsEric Andersen2001-10-241-1/+1
|
* Return NULL if EOF is encountered before terminating_string.Matt Kraai2001-10-181-10/+7
|
* Revert that change. As Matt Kraai rightly points out,Eric Andersen2001-10-181-1/+1
| | | | | this is not a bug. What I was I thinking when I committed this. Doh!
* Scrub up some function prototypes.Eric Andersen2001-10-183-7/+5
| | | | -Erik
* Patch from Stefan Soucek <ssoucek@coactive.com> toEric Andersen2001-10-181-1/+1
| | | | ignore extra empty lines in fgets_str
* unarchive function changed to support both exclude and include lists, ↵Glenn L McGrath2001-10-132-19/+20
| | | | applets that use unarchive changed to match.
* match exclude/include names with trailing '/'Glenn L McGrath2001-10-131-2/+3
|
* Use fnmatch() to compare excluded/included filesGlenn L McGrath2001-10-131-1/+1
|
* Cleanup memory usage properlyGlenn L McGrath2001-10-081-3/+7
|
* Free some variables after useGlenn L McGrath2001-10-081-0/+4
|
* Invert FILEUTILS_PRESERVE_SYMLINKS into FILEUTILS_DEREFERENCE.Matt Kraai2001-10-052-3/+3
|
* Fix BB_FEATURE_MTAB_SUPPORT test (report and patch by Magnus Damm).Matt Kraai2001-10-041-1/+1
|
* List full path instead of relative path if prefix is specified (this was ↵Glenn L McGrath2001-09-241-1/+1
| | | | supposed to be in last patch)
* Commit my changes to arith.c which fixed a couple of bugs and decreasedManuel Novoa III2001-09-111-143/+253
| | | | | code size. Please read the TODO comments regarding accessing shell variables from the arith() funciton.
* Use the correct buffer when calling dirname, improve an error message, andMatt Kraai2001-08-281-2/+5
| | | | plug some memory leaks. Patch by Laurence Anderson.
* Eliminate improper consts and allow standard version to override.Matt Kraai2001-08-242-3/+7
|