Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | When displaying the size in 1kB blocks round up if an odd number of | Glenn L McGrath | 2004-03-10 | 1 | -1/+5 | |
| | | | | blocks | |||||
* | Patch by Seth W. Klein, the -l switch was reversed | Glenn L McGrath | 2004-03-10 | 1 | -2/+2 | |
| | ||||||
* | last_patch89 from vodz: | Eric Andersen | 2003-06-20 | 1 | -45/+48 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Manuel, I rewrite bb_getopt_ulflags() function for more universal usage. My version support now: - options with arguments (optional arg as GNU extension also) - complementaly and/or incomplementaly and/or incongruously and/or list options - long_opt (all applets may have long option, add supporting is trivial) This realisation full compatibile from your version. Code size grow 480 bytes, but only coreutils/* over compensate this size after using new function. Last patch reduced over 800 bytes and not full applied to all. "mkdir" and "mv" applets have long_opt now for demonstrate trivial addition support long_opt with usage new bb_getopt_ulflags(). Complementaly and/or incomplementaly and/or incongruously and/or list options logic is not trivial, but new "cut" and "grep" applets using this logic for examples with full demostrating. New "grep" applet reduced over 300 bytes. Mark, Also. I removed bug from "grep" applet. $ echo a b | busybox grep -e a b a b a b But right is printing one only. --w vodz | |||||
* | Vodz, last_patch_86 | Glenn L McGrath | 2003-05-26 | 1 | -3/+2 | |
| | ||||||
* | Major coreutils update. | Manuel Novoa III | 2003-03-19 | 1 | -80/+147 | |
| | ||||||
* | move some globals to bss | Aaron Lehmann | 2002-08-23 | 1 | -4/+4 | |
| | ||||||
* | Run through indent | Glenn L McGrath | 2002-08-23 | 1 | -30/+32 | |
| | ||||||
* | Patch from Edward Betts <edward@debian.org> to add -x switch to du.c | Eric Andersen | 2002-04-06 | 1 | -2/+12 | |
| | ||||||
* | Make cp and mv optionally preserve hard links. | Matt Kraai | 2001-12-17 | 1 | -73/+1 | |
| | ||||||
* | Major rework of the directory structure and the entire build system. | Eric Andersen | 2001-10-24 | 1 | -8/+7 | |
| | | | | -Erik | |||||
* | Fix a silly logic error which caused symlinks to be printed twice, and | Eric Andersen | 2001-06-30 | 1 | -5/+4 | |
| | | | | | wrongly caused the return code to be an error. -Erik | |||||
* | I reworked make_human_readable_str so it now has a sane interface, | Eric Andersen | 2001-06-13 | 1 | -13/+2 | |
| | | | | | | 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 | |||||
* | Vladimir's last_patch13, containing several bugfixes. | Eric Andersen | 2001-06-01 | 1 | -1/+73 | |
| | ||||||
* | Patch from Vladimir to use last_char_is to simplify du.c | Eric Andersen | 2001-05-07 | 1 | -6/+5 | |
| | ||||||
* | Remove summary header. Not present in GNU or SUSv2. | Matt Kraai | 2001-05-03 | 1 | -2/+1 | |
| | ||||||
* | Move messages.c to libbb. Make each string in messages.c be its own .o file. | Eric Andersen | 2001-04-25 | 1 | -4/+1 | |
| | | | | | | | This way, we can new get rid of all that tedious #define rubbish we used to need to enable specific messages. This way is enormously simpler, and as a bonus also ends up saving us 96 bytes. -Erik | |||||
* | Apply Vladimir's latest cleanup patch. | Eric Andersen | 2001-04-09 | 1 | -11/+6 | |
| | | | | -Erik | |||||
* | Patchs from Jeff Garzik <jgarzik@mandrakesoft.com> to cleanup | Eric Andersen | 2001-03-09 | 1 | -1/+2 | |
| | | | | | warnings with glibc 2.2 and use always use xfopen -Erik | |||||
* | Some minor cleanups to df.c. Also, with Erik's blessing, changed name of | Mark Whitley | 2001-03-07 | 1 | -3/+3 | |
| | | | | 'format' function to 'make_human_readable_str'. | |||||
* | Static-ify a variable. make du work with all the human-readable variants | Eric Andersen | 2001-03-07 | 1 | -5/+16 | |
| | | | | since my last pass only fixed 'du -h' but left the others broken. | |||||
* | Fix up du so it behaves itself also. | Eric Andersen | 2001-03-07 | 1 | -2/+2 | |
| | | | | -Erik | |||||
* | I made these little simplifications a while back, bug forgot to | Eric Andersen | 2001-03-06 | 1 | -4/+2 | |
| | | | | | check this stuff in. -Erik | |||||
* | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | 2001-02-20 | 1 | -6/+6 | |
| | | | | | | 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 | |||||
* | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | 2001-02-14 | 1 | -2/+2 | |
| | | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||||
* | Fix up copyright msgs. Bump version to 0.49 in preparation for0_49 | Eric Andersen | 2001-01-27 | 1 | -2/+2 | |
| | | | | | 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 | 1 | -1/+3 | |
| | | | | | | | 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 HUMAN_READABLE define for -m and -h support in du, df, and ls | Richard June | 2001-01-22 | 1 | -3/+23 | |
| | | | | | 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 | 1 | -2/+2 | |
| | | | | Vladimir N. Oleynik. | |||||
* | 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 | |
| | ||||||
* | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | 2000-12-07 | 1 | -3/+3 | |
| | | | | compliant with the style guide. Everybody rebuild your tags file! | |||||
* | Must compile before committing. | Matt Kraai | 2000-12-06 | 1 | -2/+2 | |
| | ||||||
* | Fix exit status on failure. | Matt Kraai | 2000-12-06 | 1 | -4/+7 | |
| | ||||||
* | Stop using TRUE and FALSE for exit status. | Matt Kraai | 2000-12-01 | 1 | -2/+2 | |
| | ||||||
* | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | 2000-09-25 | 1 | -2/+2 | |
| | | | | -Erik | |||||
* | The result of getopt() is "int" and should be treated as such | Pavel Roskin | 2000-07-17 | 1 | -2/+2 | |
| | ||||||
* | Extract usage information into a separate file. | Matt Kraai | 2000-07-16 | 1 | -12/+1 | |
| | ||||||
* | Getopt'rd by Marc Nijdam <marc_nijdam@hp.com> | Eric Andersen | 2000-07-14 | 1 | -21/+11 | |
| | | | | -Erik | |||||
* | Use errorMsg rather than fprintf. | Matt Kraai | 2000-07-14 | 1 | -3/+3 | |
| | ||||||
* | Updates to a number of apps to remove warnings/compile errors under libc5. | Eric Andersen | 2000-06-19 | 1 | -2/+2 | |
| | | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik | |||||
* | * cp -fa now works as expected for symlinks (it didn't before) | Erik Andersen | 2000-05-10 | 1 | -4/+7 | |
| | | | | | | * zcat works again (wasn't working since option parsing was broken) * more doc updates/more support for BB_FEATURE_SIMPLE_HELP -Erik | |||||
* | Latest and greatest. Some effort at libc5 (aiming towards newlib) | Erik Andersen | 2000-04-28 | 1 | -4/+3 | |
| | | | | | compatability. -Erik | |||||
* | Upates to include copyright 2000 to everything | Erik Andersen | 2000-04-13 | 1 | -2/+2 | |
| | | | | -Erik | |||||
* | A few updates (including the cp fix the Craig has been looking for) | Erik Andersen | 2000-03-04 | 1 | -60/+11 | |
| | | | | -Erik | |||||
* | Forgot to add basename. More fixes to du from | Erik Andersen | 2000-02-21 | 1 | -8/+39 | |
| | | | | | Friedrich Vedder <fwv@myrtle.lahn.de>. -Erik | |||||
* | Fixed du. Now behaves just like GNU du (only less so). | Erik Andersen | 2000-02-19 | 1 | -4/+58 | |
| | | | | -Erik | |||||
* | - I suspect the problem has something to do w/ symlinks. | John Beppu | 2000-02-13 | 1 | -2/+2 | |
| | | | | | | | - It's not completely in agreement w/ GNU/du, but + the answer is much closer than before. - Some of the right-shifts seem to have mysteriously disappeared. I put them back in. | |||||
* | Updates | Erik Andersen | 2000-02-11 | 1 | -2/+6 | |
| | | | | -Erik | |||||
* | Some formatting updates (ran the code through indent) | Erik Andersen | 2000-02-08 | 1 | -91/+94 | |
| | | | | -Erik |