aboutsummaryrefslogtreecommitdiff
path: root/coreutils
AgeCommit message (Collapse)Author
2001-03-09Patchs from Jeff Garzik <jgarzik@mandrakesoft.com> to cleanupEric Andersen
warnings with glibc 2.2 and use always use xfopen -Erik
2001-03-07Eliminate superfluous test.Matt Kraai
2001-03-07Some minor cleanups to df.c. Also, with Erik's blessing, changed name ofMark Whitley
'format' function to 'make_human_readable_str'.
2001-03-07Static-ify a variable. make du work with all the human-readable variantsEric Andersen
since my last pass only fixed 'du -h' but left the others broken.
2001-03-07Fix up du so it behaves itself also.Eric Andersen
-Erik
2001-03-07Fix up df so it works properlyEric Andersen
-Erik
2001-03-07Fix up ls.c to ensure human readable works properly in all casesEric Andersen
2001-03-06I made these little simplifications a while back, bug forgot toEric Andersen
check this stuff in. -Erik
2001-03-02Applied patch from Vladimir N. Oleynik that fixes incorrect behaviour inMark Whitley
recovery_mode and changed option processing.
2001-02-27Patch from Vladimir N. Oleynik to save 128 bytes by moving errorEric Andersen
checking for some my_* functions to utility.c
2001-02-22Add in kent robotti's updated dos2unix.cEric Andersen
2001-02-22Make md5sum not display filename when reading stdinEric Andersen
-Erik
2001-02-21Oops! I left in my debug noise.Eric Andersen
2001-02-21df was totally broken. So I fixed it.Eric Andersen
-Erik
2001-02-20Small patch from Kent Robotti to show megabytes in human-readable output.Mark Whitley
2001-02-20Minor cleanup.Eric Andersen
2001-02-20Oops. Put time.h after busybox.h, so we can check for BB_FEATURE_LS_TIMESTAMPSEric Andersen
-Erik
2001-02-20It turns out that DODMALLOC was broken when I reorganized busybox.hEric Andersen
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
2001-02-18Another patch from Vladimir to eliminate obsolete junk.Eric Andersen
2001-02-17Get rid of long stale usage message code.Eric Andersen
-Erik
2001-02-16Fix compile error, sync() always returns 0 anyway.Glenn L McGrath
2001-02-15use perror_msg instead of perror to print the applet name.Eric Andersen
-Erik
2001-02-15Fixed 'ls -s' so it actually displays block sizes again.Eric Andersen
-Erik
2001-02-14This patch, put together by Manuel Novoa III, is a merge of workEric Andersen
done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed.
2001-02-14Commit Vladimir's latest version of stty.c. Nice work.Eric Andersen
-Erik
2001-02-05Make suffix_mult structures const. Thanks to Vladimir N. Oleynik.Matt Kraai
2001-02-01Buglet: 'tabstops' is unused if BB_FEATURE_AUTOWIDTH is not defined.Mark Whitley
2001-01-31Removed trailing \n from error_msg{,_and_die} messages.Matt Kraai
2001-01-31Cleanup patch from Vladimir N. Oleynik.Eric Andersen
* mkdir: remove 3 lines in source code. * mkfs_minix: save 32 bytes, remove 4 bugs. * mkswap: save 64 bytes, remove 1 bug.
2001-01-30Fix a stupid typo -- bug found by Larry Doolittle.Eric Andersen
2001-01-30Fix ls behavior for broken or very narrow terminals. Fix my_*Eric Andersen
functions so they comply with the original interface (i.e. don't exit on error, stringify uids and gids when no amtching name found). -Erik
2001-01-29Fix missing header file.Matt Kraai
2001-01-27Fix up copyright msgs. Bump version to 0.49 in preparation forEric Andersen
a release. Update the website with release details. -Erik
2001-01-27Fix header file usage -- there were many unnecessary header files included inEric Andersen
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
2001-01-27Add in a patch to make busybox use the normal pwd.h and grp.hEric Andersen
functions. Add in simple implementations of these functions, which can, optionally, be used instead of the system versions. -Erik
2001-01-26Fix my braindamage -- remove termios and sighandling since they are notEric Andersen
needed at all. My bad. -Erik
2001-01-26I am an idiot. Looking over my patch, ls doesn't need to do anythingEric Andersen
more then the ioctl to get the win size. None of the termios handling crap is needed. -Erik
2001-01-26Make cin be staticEric Andersen
2001-01-26Make ls understand termios.Eric Andersen
-Erik
2001-01-25Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch.Eric Andersen
-Erik
2001-01-25Apply a patch from Brent Priddy <brent.priddy@adtran.com> to addEric Andersen
'id -n' support. -Erik
2001-01-24more bugs fixed -- found doing regression testingEric Andersen
-Erik
2001-01-24Remove the warning messages. By consensus, netkit-tiny doesn'tEric Andersen
need to happen.
2001-01-24Fix spelling. s/maintainence/maintenance/Eric Andersen
2001-01-23#define -> static const int. Also got rid of some big static buffers.Mark Whitley
2001-01-22Fix silly typoEric Andersen
2001-01-22Warn about apps that will be going away in release 0.50Eric Andersen
-Erik
2001-01-22Add HUMAN_READABLE define for -m and -h support in du, df, and lsRichard June
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
2001-01-18Eliminate calls of the form "fprintf(stdout,". Thanks for the idea toMatt Kraai
Vladimir N. Oleynik.
2001-01-17Complicate truncate behavior.Matt Kraai