summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* when invoked as 'busybox foo args' remove the "busybox"Eric Andersen2000-12-082-8/+50
| | | | so ps shows only what we want it to show...
* Patch from Matt Kraai to enable proxy support.Eric Andersen2000-12-073-8/+30
|
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-07155-1021/+1021
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Fix by Tim Robbins <fyre@box3n.gumbynet.org> to prevent bad formatMatt Kraai2000-12-072-2/+2
| | | | strings from being passed to syslog(3).
* Get rid of redundant TRUE and FALSE definitions.Matt Kraai2000-12-072-14/+0
|
* oops, didn't mean to commit that last one... revertingRandolph Chung2000-12-071-1/+1
|
* Write progress meter to stderr instead of stdoutRandolph Chung2000-12-073-5/+5
|
* Fixed URL parsing bugRandolph Chung2000-12-072-16/+28
| | | | Fixed -O - output-to-stdout bug
* Patch from Jim Gleason <jimg@lineo.com> to fix tar so it no longer breaks hardEric Andersen2000-12-075-10/+192
| | | | links, and no longer segfault in a certain wierd case.
* Add some more changlog stuff suggested by Larry Doolittle.Eric Andersen2000-12-071-2/+20
|
* Bettwr document the hidden internal sh.c #defines, and which folksEric Andersen2000-12-063-6/+30
| | | | might want to use...
* Close but #1071...Eric Andersen2000-12-062-34/+28
|
* Ignore the newdocs as wellEric Andersen2000-12-061-0/+5
|
* Patch from Matt Kraai to fix 'echo "1 2 3" | tr -s " "'Eric Andersen2000-12-062-2/+2
| | | | so it properly outputs "1 2 3".
* patch from Larry Doolittle to rename BB_FEATURE_SH_BUILTINS_ALWAYS_WINEric Andersen2000-12-064-12/+12
| | | | to the more pedantically correct BB_FEATURE_SH_APPLETS_ALWAYS_WIN.
* Added insmod support for ARM, and lsmod support for older kernels,Eric Andersen2000-12-066-191/+498
| | | | | | thanks to Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and Nicolas Ferre <nicolas.ferre@alcove.fr>. -Erik
* Must compile before committing.Matt Kraai2000-12-062-4/+4
|
* Fix exit status on failure.Matt Kraai2000-12-068-36/+42
|
* Removed isBlank and isWildCard macros that were totally unused (should anyoneMark Whitley2000-12-052-10/+4
| | | | | need isBlank, please use isblank() in ctype.h). Converted isDecimal and isOctal into inline functions. Compiled, tested, worked.
* Changed some #define strings to static const char [] variables. Tested lsMark Whitley2000-12-051-4/+4
| | | | after changing, it worked.
* Use perrorMsg and clean up exit status.Matt Kraai2000-12-052-10/+10
|
* Fixed the comments to match the code and renamed the function to a (hopefully)Mark Whitley2000-12-055-15/+15
| | | | more descriptive name, and as per the style guide.
* Applied patch from Matt Kraai to add v*error functions for handling varargMark Whitley2000-12-051-21/+21
| | | | lists in a safe 'n sane fashion.
* Use perrorMsg instead of perror and keep removing files if we encounterMatt Kraai2000-12-053-15/+17
| | | | an error.
* Changelog updateEric Andersen2000-12-041-0/+5
|
* Flag day warning!Eric Andersen2000-12-042-4/+4
| | | | | Change TRUE and FALSE defines to normal C style TRUE=1, FALSE=0. -Erik
* Patch to add in the -X option and fix the --exclude bug, originally byEric Andersen2000-12-045-3/+61
| | | | | Sebastien Huet, and now ported to the latest and greatest by both Arne Bernin <ab@netropol.de> and kent robotti <robotti@metconnect.com>.
* Fix typoEric Andersen2000-12-021-1/+2
|
* Patch from Larry Doolittle so it will build the newdocs right.Eric Andersen2000-12-025-57/+49
|
* Update for handling .udebs and building using a pristine source dir...Eric Andersen2000-12-015-88/+781
|
* More doc handling updatesEric Andersen2000-12-011-7/+6
|
* Update some descriptionsEric Andersen2000-12-011-2/+3
|
* Fix yet another blunder. Create symlink correctly this time.Eric Andersen2000-12-011-1/+1
|
* I forgot a "/". Oops.Eric Andersen2000-12-011-1/+1
|
* More pristine source directory updates. It now worksEric Andersen2000-12-018-34/+116
| | | | | for me (including doing install). How about you? -Erik
* More updates for the Makefile to do BB_SRC_DIR. This isEric Andersen2000-12-011-15/+48
| | | | | primarily a patch from Larry Doolittle, but with updates from me to handle docs and link creation properly...
* Make tar shutup on compileEric Andersen2000-12-012-4/+4
|
* Remove #ifdef __STDC__ junk. We don't do K&R round these parts,Eric Andersen2000-12-018-290/+6
| | | | so no point acting like we do.
* Stop using TRUE and FALSE for exit status.Matt Kraai2000-12-01132-373/+375
|
* Apply some patches from Gennady Feldman <gfeldman@mail.com> toEric Andersen2000-11-303-117/+195
| | | | | . /etc/profile, and to emulate bash prompt. I've cleaned up his patches a bit and all looks good now...
* Note new dependency.Matt Kraai2000-11-301-1/+1
|
* Note an error if we are unable to list/extract specified files.Matt Kraai2000-11-302-4/+28
|
* Patch from Larry Doolittle (with minor touchups from me so everything compilesEric Andersen2000-11-3010-713/+302
| | | | | and works) to use the applet definitions in applets.h to autogenerate the applet function and usage prototypes.
* Fix escape char problem.Eric Andersen2000-11-303-12/+39
|
* Add "\r" to utility.c:process_escape_sequence() (from email aboutEric Andersen2000-11-291-0/+3
| | | | | "echo vs. optarg" from Larry Doolittle Tue, 28 Nov 2000 10:36:04 -0800) -Erik
* Apply the BSD echo version submitted by Jonas Holmberg <jonas.holmberg@axis.com>Eric Andersen2000-11-292-58/+134
|
* Apply rev #2 of dd fix from Gennady Feldman.Eric Andersen2000-11-294-16/+46
|
* Update the changelog a bitEric Andersen2000-11-291-1/+11
|
* Moar Speling fickes frum Larry DoolittleEric Andersen2000-11-292-11/+11
|
* Patch form Larry Doolittle <ldoolitt@recycle.lbl.gov> (in collaborationEric Andersen2000-11-291-6/+15
| | | | | | with Matt Kraai <kraai@alumni.carnegiemellon.edu>) to allow for a pristine source directory -- where all the .o files and such are not placed into the source tree. Thanks Larry!