summaryrefslogtreecommitdiff
path: root/coreutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Handle endian-ness. Patch from Paul J.Y. Lahaie <pjlahaie@linuxcare.com>Eric Andersen2001-04-141-1/+8
| | | | -Erik
* Fix dos2unix/tr problem noted by Larry Doolittle.Matt Kraai2001-04-121-1/+1
|
* use tmpfile() and revert my previous changes... convert() belongs hereGlenn L McGrath2001-04-121-0/+84
|
* Move convert to libbbGlenn L McGrath2001-04-121-91/+0
|
* Vladimir's patch to reverse previous patchGlenn L McGrath2001-04-111-6/+6
|
* Apply Vladimir's latest cleanup patch.Eric Andersen2001-04-094-20/+17
| | | | -Erik
* more FILE_OFFSET_BITS == 64 adjustments.Eric Andersen2001-04-051-1/+1
|
* A number of cleanups. Now compiles with libc5, glibc, and uClibc. Fix a fewEric Andersen2001-04-052-3/+3
| | | | | | shadowed variables. Move (almost) all syscalls to libbb/syscalls.c, so I can handle them sanely and all at once. -Erik
* Place a temporary bandaid on the ls/du/df human-readable issue. This method isEric Andersen2001-04-031-6/+9
| | | | | | | | | not going to scale up as well as I would like, and Matt Kraai and I have discussed a better long term solution. But for now this will at least make all the human-readable apps give correct answers. Please test the human readable/non-human readable options on your systems!!! -Erik
* Add in a new standalone env applet for fixing up app's environmentsEric Andersen2001-03-291-0/+97
| | | | -Erik
* Fix ls so it uses make_human_readable_str() the same way alreadyEric Andersen2001-03-281-1/+1
| | | | | used by 'du' and 'df'. Now we just need to fix make_human_readable_str so it behaves they way it used to before Matt fixed it.
* Applied patch from David Douthitt to fix problem where ls reports half theMark Whitley2001-03-271-2/+2
| | | | file size. Should close bug #1140.
* -Wshadow tr fix from Jeff GarzikEric Andersen2001-03-231-9/+9
|
* A nice patch from Larry Doolittle that adds -Wshadow andEric Andersen2001-03-213-11/+11
| | | | cleans up most of the now-revealed problems.
* Another cleanup patch from Jeff Garzik <jgarzik@mandrakesoft.com>Eric Andersen2001-03-193-3/+5
|
* Simpify detection of no options.Eric Andersen2001-03-191-1/+1
|
* locale correction patch from VladimirEric Andersen2001-03-191-20/+1
|
* Should exclude "i" option when not enabled.Eric Andersen2001-03-191-1/+1
|
* Doesn't need a "-" option -- getopt does that for us.Eric Andersen2001-03-191-4/+0
|
* Patch from Vladimir to force interactiveFlag=FALSE when forceFlag=TRUEEric Andersen2001-03-191-3/+5
|
* getopt-ify rm so that BB_FEATURE_RM_INTERACTIVE will workEric Andersen2001-03-191-34/+32
|
* Credited Christophe Boyaniqu for interactive patch to rm.Mark Whitley2001-03-131-0/+4
|
* Applied patch from Christophe Boyanique to add -i support to rm.Mark Whitley2001-03-131-0/+25
|
* /* getopt not needed */Mark Whitley2001-03-101-0/+2
|
* Added some more '/* getopt not needed */' lines.Mark Whitley2001-03-093-0/+6
|
* Fixed df.c so that nfs volumes will display properly (fixing bug #1113).Eric Andersen2001-03-091-6/+10
| | | | | | | Problem was 512/1024 = 0 if you use longs, so I cast KILOBYTE to a double, then cast the result back to an int after the math is done, letting C's type promotion do its magic for the rest. -Erik
* Patch from Jeff Garzik marking a few 'getopt not needed' apps.Eric Andersen2001-03-092-0/+4
|
* A cleanup patch from Jeff Garzik to static-ify a number ofEric Andersen2001-03-097-28/+28
| | | | namespace polluting things that really should be static.
* Patchs from Jeff Garzik <jgarzik@mandrakesoft.com> to cleanupEric Andersen2001-03-097-1/+8
| | | | | warnings with glibc 2.2 and use always use xfopen -Erik
* Eliminate superfluous test.Matt Kraai2001-03-071-2/+0
|
* Some minor cleanups to df.c. Also, with Erik's blessing, changed name ofMark Whitley2001-03-073-39/+42
| | | | 'format' function to 'make_human_readable_str'.
* Static-ify a variable. make du work with all the human-readable variantsEric Andersen2001-03-072-6/+17
| | | | since my last pass only fixed 'du -h' but left the others broken.
* Fix up du so it behaves itself also.Eric Andersen2001-03-071-2/+2
| | | | -Erik
* Fix up df so it works properlyEric Andersen2001-03-071-10/+5
| | | | -Erik
* Fix up ls.c to ensure human readable works properly in all casesEric Andersen2001-03-071-5/+5
|
* I made these little simplifications a while back, bug forgot toEric Andersen2001-03-062-7/+3
| | | | | check this stuff in. -Erik
* Applied patch from Vladimir N. Oleynik that fixes incorrect behaviour inMark Whitley2001-03-021-249/+301
| | | | recovery_mode and changed option processing.
* Patch from Vladimir N. Oleynik to save 128 bytes by moving errorEric Andersen2001-02-271-3/+0
| | | | checking for some my_* functions to utility.c
* Add in kent robotti's updated dos2unix.cEric Andersen2001-02-221-38/+144
|
* Make md5sum not display filename when reading stdinEric Andersen2001-02-221-1/+6
| | | | -Erik
* Oops! I left in my debug noise.Eric Andersen2001-02-211-3/+0
|
* df was totally broken. So I fixed it.Eric Andersen2001-02-211-11/+32
| | | | -Erik
* Small patch from Kent Robotti to show megabytes in human-readable output.Mark Whitley2001-02-201-1/+2
|
* Minor cleanup.Eric Andersen2001-02-201-13/+11
|
* Oops. Put time.h after busybox.h, so we can check for BB_FEATURE_LS_TIMESTAMPSEric Andersen2001-02-201-4/+4
| | | | -Erik
* It turns out that DODMALLOC was broken when I reorganized busybox.hEric Andersen2001-02-2043-61/+62
| | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik
* Another patch from Vladimir to eliminate obsolete junk.Eric Andersen2001-02-182-9/+2
|
* Get rid of long stale usage message code.Eric Andersen2001-02-171-6/+3
| | | | -Erik
* Fix compile error, sync() always returns 0 anyway.Glenn L McGrath2001-02-161-1/+3
|
* use perror_msg instead of perror to print the applet name.Eric Andersen2001-02-151-18/+31
| | | | -Erik