Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix up copyright msgs. Bump version to 0.49 in preparation for0_49 | Eric Andersen | 2001-01-27 | 16 | -17/+17 |
| | | | | | a release. Update the website with release details. -Erik | ||||
* | Fix header file usage -- there were many unnecessary header files included in | Eric Andersen | 2001-01-27 | 37 | -7/+72 |
| | | | | | | | 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 | ||||
* | Add in a patch to make busybox use the normal pwd.h and grp.h | Eric Andersen | 2001-01-27 | 4 | -5/+0 |
| | | | | | | functions. Add in simple implementations of these functions, which can, optionally, be used instead of the system versions. -Erik | ||||
* | Fix my braindamage -- remove termios and sighandling since they are not | Eric Andersen | 2001-01-26 | 1 | -1/+1 |
| | | | | | needed at all. My bad. -Erik | ||||
* | I am an idiot. Looking over my patch, ls doesn't need to do anything | Eric Andersen | 2001-01-26 | 1 | -51/+1 |
| | | | | | | more then the ioctl to get the win size. None of the termios handling crap is needed. -Erik | ||||
* | Make cin be static | Eric Andersen | 2001-01-26 | 1 | -1/+1 |
| | |||||
* | Make ls understand termios. | Eric Andersen | 2001-01-26 | 1 | -1/+60 |
| | | | | -Erik | ||||
* | Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch. | Eric Andersen | 2001-01-25 | 1 | -4/+5 |
| | | | | -Erik | ||||
* | Apply a patch from Brent Priddy <brent.priddy@adtran.com> to add | Eric Andersen | 2001-01-25 | 1 | -6/+18 |
| | | | | | 'id -n' support. -Erik | ||||
* | more bugs fixed -- found doing regression testing | Eric Andersen | 2001-01-24 | 1 | -2/+6 |
| | | | | -Erik | ||||
* | Remove the warning messages. By consensus, netkit-tiny doesn't | Eric Andersen | 2001-01-24 | 1 | -4/+0 |
| | | | | need to happen. | ||||
* | Fix spelling. s/maintainence/maintenance/ | Eric Andersen | 2001-01-24 | 1 | -1/+1 |
| | |||||
* | #define -> static const int. Also got rid of some big static buffers. | Mark Whitley | 2001-01-23 | 6 | -62/+79 |
| | |||||
* | Fix silly typo | Eric Andersen | 2001-01-22 | 1 | -1/+1 |
| | |||||
* | Warn about apps that will be going away in release 0.50 | Eric Andersen | 2001-01-22 | 1 | -0/+4 |
| | | | | -Erik | ||||
* | Add HUMAN_READABLE define for -m and -h support in du, df, and ls | Richard June | 2001-01-22 | 3 | -18/+107 |
| | | | | | 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 | ||||
* | Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to | Matt Kraai | 2001-01-18 | 3 | -27/+27 |
| | | | | Vladimir N. Oleynik. | ||||
* | Complicate truncate behavior. | Matt Kraai | 2001-01-17 | 1 | -7/+13 |
| | |||||
* | Turned some #define constants into static const ints. | Mark Whitley | 2001-01-05 | 1 | -2/+2 |
| | |||||
* | Rewrote tail. | Matt Kraai | 2001-01-05 | 1 | -253/+203 |
| | |||||
* | Changed email address to codepoet.org, updated list of applets / docs I | Mark Whitley | 2001-01-04 | 1 | -1/+1 |
| | | | | maintain in AUTHORS. | ||||
* | Improvements from Vladimir N. Oleynik. | Matt Kraai | 2000-12-30 | 1 | -2/+2 |
| | |||||
* | Use busybox error handling functions wherever possible. | Matt Kraai | 2000-12-22 | 4 | -11/+7 |
| | |||||
* | Turns out, md5sum was broken anyways. It uses backwards TRUE/FALSE | Eric Andersen | 2000-12-20 | 1 | -18/+14 |
| | | | | | and wasnever updated when TRUE and FALSE were fixed. So kludge it by doing an #undef TRUE, then define it backwards... | ||||
* | Fix a warning in sh.c. Remove use of getline() in md5sum since | Eric Andersen | 2000-12-20 | 1 | -12/+3 |
| | | | | nobody else uses it and it is a GNU extension anyways... | ||||
* | Rewrote. | Matt Kraai | 2000-12-20 | 1 | -239/+37 |
| | |||||
* | Rewrote dd. | Matt Kraai | 2000-12-18 | 2 | -172/+119 |
| | |||||
* | Change calls to error_msg.* and strerror to use perror_msg.*. | Matt Kraai | 2000-12-18 | 9 | -22/+19 |
| | |||||
* | Add missing newlines to error messages. | Matt Kraai | 2000-12-18 | 2 | -5/+6 |
| | |||||
* | Fix from Matt Kraai -- a better way to NULL terminate strings for the | Eric Andersen | 2000-12-13 | 4 | -14/+8 |
| | | | | | my_* passwd and group routines. I should have thought of doing it this way... | ||||
* | Patch from Matt Kraai to fix 'dirname /' | Eric Andersen | 2000-12-12 | 1 | -5/+6 |
| | |||||
* | du.c error msg cleanup from Kent Robotti | Eric Andersen | 2000-12-12 | 1 | -2/+2 |
| | |||||
* | Patch from kent robotti to fix a buglet where | Eric Andersen | 2000-12-11 | 1 | -3/+2 |
| | | | | | | | # du doesn't_exist du: doesn't_exist: No such file or directory 0 doesn't_exist which was on course wrong. I simplified it a bit... | ||||
* | Fix problem where 'du file_that_exists' doesn't work. | Eric Andersen | 2000-12-09 | 1 | -2/+2 |
| | |||||
* | Patch from Matt Kraai to implement uniq -[cdu] | Eric Andersen | 2000-12-09 | 1 | -7/+38 |
| | |||||
* | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | 2000-12-07 | 27 | -114/+114 |
| | | | | compliant with the style guide. Everybody rebuild your tags file! | ||||
* | Get rid of redundant TRUE and FALSE definitions. | Matt Kraai | 2000-12-07 | 1 | -7/+0 |
| | |||||
* | Patch from Matt Kraai to fix 'echo "1 2 3" | tr -s " "' | Eric Andersen | 2000-12-06 | 1 | -1/+1 |
| | | | | so it properly outputs "1 2 3". | ||||
* | Must compile before committing. | Matt Kraai | 2000-12-06 | 1 | -2/+2 |
| | |||||
* | Fix exit status on failure. | Matt Kraai | 2000-12-06 | 2 | -15/+17 |
| | |||||
* | Use perrorMsg instead of perror and keep removing files if we encounter | Matt Kraai | 2000-12-05 | 1 | -5/+6 |
| | | | | an error. | ||||
* | Remove #ifdef __STDC__ junk. We don't do K&R round these parts, | Eric Andersen | 2000-12-01 | 1 | -40/+0 |
| | | | | so no point acting like we do. | ||||
* | Stop using TRUE and FALSE for exit status. | Matt Kraai | 2000-12-01 | 27 | -53/+54 |
| | |||||
* | Apply the BSD echo version submitted by Jonas Holmberg <jonas.holmberg@axis.com> | Eric Andersen | 2000-11-29 | 1 | -29/+67 |
| | |||||
* | Apply rev #2 of dd fix from Gennady Feldman. | Eric Andersen | 2000-11-29 | 1 | -7/+21 |
| | |||||
* | Apply a patch from Larry Doolittle <ldoolitt@recycle.lbl.gov> to close | Eric Andersen | 2000-11-29 | 1 | -62/+46 |
| | | | | | | bug 1069. This shaves about 100 bytes from the executable, and about 200 bytes of heap usage. Also document the "-d" option in the usage message. | ||||
* | Patch from Matt Kraai to fix an infinate loop with ls -aR | Eric Andersen | 2000-11-29 | 1 | -6/+32 |
| | |||||
* | Fix behavior when removal fails. | Matt Kraai | 2000-11-22 | 1 | -3/+5 |
| | |||||
* | Fixed user and group name listing. | Matt Kraai | 2000-11-18 | 1 | -22/+13 |
| | |||||
* | Applied patch from Brent Priddy <brent.priddy@adtran.com> to handle the | Mark Whitley | 2000-11-17 | 1 | -24/+37 |
| | | | | special-case of using newlines as field delimiters. |