Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Applied patch from Christophe Boyanique to add -i support to rm. | Mark Whitley | 2001-03-13 | 1 | -0/+4 | |
| | ||||||
* | Applied patch from Gennady Feldman to split up syslogd.c into syslogd and | Mark Whitley | 2001-03-12 | 1 | -0/+5 | |
| | | | | klogd (as it should be). | |||||
* | Add in 'trim' routine. Fix up sh.c so it works when wordexp | Eric Andersen | 2001-03-08 | 1 | -0/+1 | |
| | | | | | is not available. -Erik | |||||
* | Changed KILOBYTE, MEGABYTE, and GIGABYTE from #define to enum. | Mark Whitley | 2001-03-07 | 1 | -3/+5 | |
| | ||||||
* | Some minor cleanups to df.c. Also, with Erik's blessing, changed name of | Mark Whitley | 2001-03-07 | 1 | -1/+1 | |
| | | | | 'format' function to 'make_human_readable_str'. | |||||
* | Applied patch from David Douthitt to fix build error in df.c when | Mark Whitley | 2001-03-01 | 1 | -1/+1 | |
| | | | | BB_FEATURE_HUMAN_READABLE was disabled. | |||||
* | Patch from Vladimir N. Oleynik to save 128 bytes by moving error | Eric Andersen | 2001-02-27 | 1 | -3/+3 | |
| | | | | checking for some my_* functions to utility.c | |||||
* | Turn off the printf attribute for the ?error_msg* functions, since it | Eric Andersen | 2001-02-22 | 1 | -4/+4 | |
| | | | | | | is ok to pass them a NULL, unlike printf. This silences a pointless warning message. -Erik | |||||
* | Another update to the way usage messages are done by Evin Robertson | Eric Andersen | 2001-02-22 | 1 | -7/+0 | |
| | | | | | | <nitfol@my-deja.com>, which makes things just a little bit smaller, but makes usage.h more readable/maintainable IMHO. -Erik | |||||
* | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | 2001-02-14 | 1 | -2/+9 | |
| | | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||||
* | Add in ifconfig and route | Eric Andersen | 2001-02-14 | 1 | -0/+1 | |
| | ||||||
* | Several cleanups from Manuel Novoa III. | Eric Andersen | 2001-02-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | get_kernel_revision -- size reduction NOTE: may want to combine with get_kernel_version in insmod??? parse_mode -- size reduction, multiple settings with "," now work correctly, sticky-bit setting now implemented process_escape_sequence -- size reduction, octal code to big for char bug fixed format -- size reduction, val > LONG_MAX and hr = 1 printing bug fixed (was %ld), | |||||
* | Make suffix_mult structures const. Thanks to Vladimir N. Oleynik. | Matt Kraai | 2001-02-05 | 1 | -1/+2 | |
| | ||||||
* | Create find_applet_by_name function. Save 32 bytes. | Matt Kraai | 2001-02-01 | 1 | -1/+1 | |
| | ||||||
* | Fix wget error message and add (and use) chomp library function. | Matt Kraai | 2001-02-01 | 1 | -0/+1 | |
| | ||||||
* | Fix header file usage -- there were many unnecessary header files included in | Eric Andersen | 2001-01-27 | 1 | -31/+1 | |
| | | | | | | | busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik | |||||
* | Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch. | Eric Andersen | 2001-01-25 | 1 | -0/+8 | |
| | | | | -Erik | |||||
* | Add HUMAN_READABLE define for -m and -h support in du, df, and ls | Richard June | 2001-01-22 | 1 | -0/+7 | |
| | | | | | Add support for -k in du, df, and ls(no define, it's for compatibliity with the GNU utils as bb does -k by default) Fix bug #1084 | |||||
* | Better dmalloc handling | Eric Andersen | 2001-01-02 | 1 | -5/+5 | |
| | ||||||
* | Fix tar handling of absolute paths and excluded directories. | Matt Kraai | 2000-12-19 | 1 | -0/+1 | |
| | ||||||
* | Rewrote dd. | Matt Kraai | 2000-12-18 | 1 | -0/+7 | |
| | ||||||
* | Rewrite nc to be simpler, smaller, and to check syscalls for errors. | Matt Kraai | 2000-12-15 | 1 | -0/+1 | |
| | ||||||
* | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | 2000-12-07 | 1 | -18/+18 | |
| | | | | compliant with the style guide. Everybody rebuild your tags file! | |||||
* | Removed isBlank and isWildCard macros that were totally unused (should anyone | Mark Whitley | 2000-12-05 | 1 | -5/+2 | |
| | | | | | need isBlank, please use isblank() in ctype.h). Converted isDecimal and isOctal into inline functions. Compiled, tested, worked. | |||||
* | Fixed the comments to match the code and renamed the function to a (hopefully) | Mark Whitley | 2000-12-05 | 1 | -1/+1 | |
| | | | | more descriptive name, and as per the style guide. | |||||
* | Flag day warning! | Eric Andersen | 2000-12-04 | 1 | -2/+2 | |
| | | | | | Change TRUE and FALSE defines to normal C style TRUE=1, FALSE=0. -Erik | |||||
* | Remove #ifdef __STDC__ junk. We don't do K&R round these parts, | Eric Andersen | 2000-12-01 | 1 | -2/+1 | |
| | | | | so no point acting like we do. | |||||
* | Patch from Larry Doolittle (with minor touchups from me so everything compiles | Eric Andersen | 2000-11-30 | 1 | -236/+11 | |
| | | | | | and works) to use the applet definitions in applets.h to autogenerate the applet function and usage prototypes. | |||||
* | Apply a patch fromkent robotti: | Eric Andersen | 2000-11-29 | 1 | -2/+2 | |
| | | | | | | | | | Renamed unrpm to original rpmunpack, so you can use an included shell script called unrpm as a front end to it. There's also a shell script called undeb included for debian packages. Change undeb and unrpm scripts to work with the busybox tar and gunzip. | |||||
* | "I will always compile before I commit." | Eric Andersen | 2000-11-17 | 1 | -0/+3 | |
| | | | | | | "I will always compile before I commit." "I will always compile before I commit." -Erik | |||||
* | Fix up builtin overrides, and hack in the binary search for finding | Eric Andersen | 2000-11-17 | 1 | -0/+2 | |
| | | | | matching applets into the shell. | |||||
* | Added a new perrorMsg function, cleanup up error handling, fixed TRUE/FALSE | Matt Kraai | 2000-10-25 | 1 | -0/+1 | |
| | | | | uses, and other minor fixes. | |||||
* | Added a fatalPerror function to simplify error handling. | Matt Kraai | 2000-10-25 | 1 | -0/+1 | |
| | ||||||
* | Put getopt_usage where it belongs and added *_usage entries in busybox.[ch] | Mark Whitley | 2000-10-19 | 1 | -0/+1 | |
| | ||||||
* | Added cmp and readlink applets from Matt Kraai. | Mark Whitley | 2000-10-09 | 1 | -0/+4 | |
| | ||||||
* | Rewrote head to perservere when it can't open a file, and share code | Matt Kraai | 2000-09-27 | 1 | -0/+1 | |
| | | | | with cat. | |||||
* | Rewrote uniq to be less than a third of the size, and fixed some other | Matt Kraai | 2000-09-27 | 1 | -0/+1 | |
| | | | | minor problems. | |||||
* | Add in busybox.h. I renamed it, and forgot to commit the newky named version. | Eric Andersen | 2000-09-26 | 1 | -0/+468 | |
-Erik |