Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize) | Eric Andersen | 2003-09-15 | 1 | -10/+5 | |
| | | | | | to ensure proper fallback behavior on, i.e. serial consoles. -Erik | |||||
* | Michael Sternberg writes: | Eric Andersen | 2003-07-14 | 1 | -0/+4 | |
| | | | | | | | Latest BusyBox from CVS (Jul 7 2003). File coreutils/ls.c "if" at line 970 should be enclosed in #ifdef CONFIG_FEATURE_LS_SORTFILES "if" at line 976 should be enclosed in #ifdef CONFIG_FEATURE_LS_TIMESTAMPS | |||||
* | Patch from Russell Coker: | Eric Andersen | 2003-07-03 | 1 | -13/+81 | |
| | | | | | I've attached my latest SE Linux patch for busybox against the latest CVS version of busybox. | |||||
* | Major coreutils update. | Manuel Novoa III | 2003-03-19 | 1 | -289/+268 | |
| | ||||||
* | last_patch75_2 from vodz, | Eric Andersen | 2003-01-14 | 1 | -2/+4 | |
| | ||||||
* | Correct column width for tab completion and ls | Glenn L McGrath | 2003-01-06 | 1 | -114/+82 | |
| | ||||||
* | Change if(x)free(x); to free(x); | Aaron Lehmann | 2002-11-28 | 1 | -2/+1 | |
| | ||||||
* | Use printf instead of fprintf(stdout | Glenn L McGrath | 2002-11-28 | 1 | -7/+3 | |
| | ||||||
* | Run through indent, fix BB_ define | Glenn L McGrath | 2002-08-22 | 1 | -355/+441 | |
| | ||||||
* | Fix silly combinitorial oversight | Eric Andersen | 2002-04-27 | 1 | -5/+3 | |
| | ||||||
* | ls could mis-color certain entries when previous commands | Eric Andersen | 2002-04-17 | 1 | -0/+2 | |
| | | | | had failed. Explicitly 0 out errno to prevent that. | |||||
* | Patch from J.W.Janssen <JanWillem.Janssen@lxtreme.nl> to provide | Eric Andersen | 2002-03-20 | 1 | -2/+63 | |
| | | | | | | color ls support, modifed by me to behave properly when not running output to a terminal (i.e. 'ls | more') -Erik | |||||
* | list_single: Declare scratch iff CONFIG_FEATURE_LS_USERNAME is defined. | Matt Kraai | 2002-03-08 | 1 | -0/+2 | |
| | ||||||
* | * fileutils/ls.c (showfiles): Display multiple short names on a line. | Matt Kraai | 2002-03-08 | 1 | -6/+1 | |
| | ||||||
* | Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !. | Matt Kraai | 2001-12-20 | 1 | -1/+1 | |
| | ||||||
* | Major rework of the directory structure and the entire build system. | Eric Andersen | 2001-10-24 | 1 | -58/+58 | |
| | | | | -Erik | |||||
* | Make formatting match GNU ls (we were including a spare ' ') | Eric Andersen | 2001-07-31 | 1 | -1/+1 | |
| | | | | -Erik | |||||
* | Some patches to make dietlibc work... | Eric Andersen | 2001-07-22 | 1 | -0/+1 | |
| | ||||||
* | Some adjustments, mostly from David McCullough <davidm@lineo.com> to | Eric Andersen | 2001-07-19 | 1 | -0/+2 | |
| | | | | | | | make busybox be more uClinux friendly. I also adjusted Config.h for uClinux so it will automagically disable apps the arn't going to work without fork() and such. -Erik | |||||
* | Pad the human readable output for 'ls -sh' to 6 chars, since we will | Eric Andersen | 2001-06-30 | 1 | -1/+1 | |
| | | | | | have numbers printed as XXX.YU, so we need 6 digits not 4. -Erik | |||||
* | ls -s was reporting bytes instead of blocks. | Manuel Novoa III | 2001-06-30 | 1 | -1/+1 | |
| | ||||||
* | Fix up some warnings that show up on ppc | Eric Andersen | 2001-06-25 | 1 | -1/+1 | |
| | ||||||
* | I reworked make_human_readable_str so it now has a sane interface, | Eric Andersen | 2001-06-13 | 1 | -6/+5 | |
| | | | | | | and then fixed up df, du, and ls to use the new interface. I also fixed up some formatting issues in ls while I was in there. -Erik | |||||
* | Patch from larry to fix some grammar errors. | Eric Andersen | 2001-05-23 | 1 | -1/+1 | |
| | ||||||
* | Made new xreadlink function for libbb and changed applets to use it instead of | Mark Whitley | 2001-04-30 | 1 | -6/+6 | |
| | | | | readlink(2). | |||||
* | Simplify pathname building, in which a bug was noted by Larry Doolittle, | Matt Kraai | 2001-04-23 | 1 | -9/+9 | |
| | | | | | a patch was provided by Vladimir Oleynik, and am improved patch commited by me. | |||||
* | more FILE_OFFSET_BITS == 64 adjustments. | Eric Andersen | 2001-04-05 | 1 | -1/+1 | |
| | ||||||
* | A number of cleanups. Now compiles with libc5, glibc, and uClibc. Fix a few | Eric Andersen | 2001-04-05 | 1 | -1/+1 | |
| | | | | | | 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 is | Eric Andersen | 2001-04-03 | 1 | -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 | |||||
* | Fix ls so it uses make_human_readable_str() the same way already | Eric Andersen | 2001-03-28 | 1 | -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 the | Mark Whitley | 2001-03-27 | 1 | -2/+2 | |
| | | | | file size. Should close bug #1140. | |||||
* | A cleanup patch from Jeff Garzik to static-ify a number of | Eric Andersen | 2001-03-09 | 1 | -16/+16 | |
| | | | | namespace polluting things that really should be static. | |||||
* | Some minor cleanups to df.c. Also, with Erik's blessing, changed name of | Mark Whitley | 2001-03-07 | 1 | -2/+4 | |
| | | | | 'format' function to 'make_human_readable_str'. | |||||
* | Fix up ls.c to ensure human readable works properly in all cases | Eric Andersen | 2001-03-07 | 1 | -5/+5 | |
| | ||||||
* | I made these little simplifications a while back, bug forgot to | Eric Andersen | 2001-03-06 | 1 | -3/+1 | |
| | | | | | check this stuff in. -Erik | |||||
* | Oops. Put time.h after busybox.h, so we can check for BB_FEATURE_LS_TIMESTAMPS | Eric Andersen | 2001-02-20 | 1 | -4/+4 | |
| | | | | -Erik | |||||
* | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | 2001-02-20 | 1 | -1/+1 | |
| | | | | | | 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 | |||||
* | Fixed 'ls -s' so it actually displays block sizes again. | Eric Andersen | 2001-02-15 | 1 | -3/+3 | |
| | | | | -Erik | |||||
* | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | 2001-02-14 | 1 | -1/+1 | |
| | | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||||
* | Buglet: 'tabstops' is unused if BB_FEATURE_AUTOWIDTH is not defined. | Mark Whitley | 2001-02-01 | 1 | -6/+5 | |
| | ||||||
* | Fix a stupid typo -- bug found by Larry Doolittle. | Eric Andersen | 2001-01-30 | 1 | -1/+1 | |
| | ||||||
* | Fix ls behavior for broken or very narrow terminals. Fix my_* | Eric Andersen | 2001-01-30 | 1 | -17/+25 | |
| | | | | | | 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 | |||||
* | Fix header file usage -- there were many unnecessary header files included in | Eric Andersen | 2001-01-27 | 1 | -0/+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 | |||||
* | 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 | |||||
* | more bugs fixed -- found doing regression testing | Eric Andersen | 2001-01-24 | 1 | -2/+6 | |
| | | | | -Erik | |||||
* | #define -> static const int. Also got rid of some big static buffers. | Mark Whitley | 2001-01-23 | 1 | -35/+40 | |
| | ||||||
* | Add HUMAN_READABLE define for -m and -h support in du, df, and ls | Richard June | 2001-01-22 | 1 | -2/+29 | |
| | | | | | 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 |