Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-21 | libbb: nuke BB_GETOPT_ERROR, always die if there are mutually exclusive options | Denis Vlasenko | |
find_pair 164 180 +16 passwd_main 1222 1230 +8 display_speed 91 96 +5 msh_main 1335 1339 +4 qrealloc 38 36 -2 refresh 1190 1182 -8 cut_main 543 532 -11 sendCgi 1807 1794 -13 getopt32 1063 1045 -18 arith 2077 2030 -47 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 4/6 up/down: 33/-99) Total: -66 bytes text data bss dec hex filename 781548 1168 11900 794616 c1ff8 busybox_old 781452 1168 11900 794520 c1f98 busybox_unstripped | |||
2007-05-26 | usage.c: remove reference to busybox.h | Denis Vlasenko | |
*: s/include "busybox.h"/include "libbb.h" | |||
2007-04-10 | audit small applets and mark some of them as NOFORK. | Denis Vlasenko | |
Put big scary warnings in relevant places. | |||
2007-04-08 | getopt32: fix llist_t options ordering. llist_rev is not unused. | Denis Vlasenko | |
function old new delta tar_main 705 695 -10 sort_main 928 918 -10 decode_format_string 886 876 -10 run_parts_main 197 185 -12 ps_main 513 500 -13 wget_main 2764 2750 -14 awk_main 1014 1000 -14 od_main 2886 2866 -20 llist_rev 25 - -25 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/8 up/down: 0/-128) Total: -128 bytes | |||
2007-02-17 | sort: fix multiple -k (was ignoring all except last) | Denis Vlasenko | |
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-01-07 | diff: small optimizations; do not try to diff non-seekable stream | Denis Vlasenko | |
(currently we don't support that) sort: fixes. testsuites fixed: sort with non-default leading delim 1 sort with non-default leading delim 2 sort key doesn't strip leading blanks, disables fallback global sort | |||
2007-01-02 | str2u() is only used when FEATURE_SORT_BIG is enabled | Mike Frysinger | |
2007-01-01 | stty: fix width of a field for ppc32 | Denis Vlasenko | |
sort: fix -u to match coreutils 6.3 msh: compile fix (my fault) | |||
2006-12-26 | style fixes | Denis Vlasenko | |
last xcalloc replaced by xzalloc | |||
2006-12-16 | inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid] | Denis Vlasenko | |
2006-11-26 | sort: two small optimizations | Denis Vlasenko | |
2006-11-26 | sort: reformat entire file wrt style. | Denis Vlasenko | |
fix single obvious bug: right hand was 0 here: flags & (FLAG_b&FLAG_d&FLAG_f&FLAG_i&FLAG_bb) fixed to use | | |||
2006-11-17 | - end may be used uninitialized. | Bernhard Reutner-Fischer | |
- TODO: should eventually use skip_whitespace there | |||
2006-10-27 | last nail into error_msg() (de)capitalization | Denis Vlasenko | |
2006-10-26 | remove bb_printf and the like | Denis Vlasenko | |
2006-10-12 | bb_get_[chomped]line_from_file wasn't descriptive enough. | Denis Vlasenko | |
Renaming... | |||
2006-10-12 | cut, mount: small improvements | Denis Vlasenko | |
2006-10-03 | rename bb_default_error_retval -> xfunc_error_retval | Denis Vlasenko | |
2006-09-27 | silly switch style fix | Denis Vlasenko | |
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-08-03 | Remove xcalloc() and convert its callers to xzalloc(). About half of them | Rob Landley | |
were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack. | |||
2006-08-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob Landley | |
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) | |||
2006-06-15 | Fix bug found by Joey Hess and forwarded by Bastian Bunk. Add Joey Hess's | Rob Landley | |
test case to the testsuite, plus another one that would have been broken by the first attempt at a fix. | |||
2006-05-09 | Replace isnan() and isinf() with inline tests so uClibc doesn't want us to | Rob Landley | |
link sort against libm. This adds 22 bytes for glibc but is a win for uClibc, and since glibc is bigger than all of busybox it seems kind of silly to worry about it. | |||
2006-04-16 | use strchr() not index() | Mike Frysinger | |
2006-02-24 | A few changes falling out from the effort to make sed handle embedded NUL bytes. | Rob Landley | |
Checking in to reduce the diff between my tree and svn... | |||
2006-01-25 | just whitespace | Tim Riker | |
2005-10-08 | Rename CONFIG_SORT_BIG to CONFIG_FEATURE_SORT_BIG so allbareconfig can find it. | Rob Landley | |
2005-07-20 | applying patch from: | Paul Fox | |
0000227: sort use wrong type for getopt return variable | |||
2005-04-16 | Patch from Bernhard Fischer to make a bunch of symbols static | Eric Andersen | |
which were otherwise cluttering the global namespace. | |||
2005-01-24 | Sort rewrite to be SUSv3 compliant. New config option, updated help, and | Rob Landley | |
a couple of infrastructure bits. | |||
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2001-10-24 | Major rework of the directory structure and the entire build system. | Eric Andersen | |
-Erik | |||
2001-04-17 | Applied patch from I.Q. to add sort -u as a feature. | Mark Whitley | |
2001-04-17 | Changed line[strlen(line) - 1] = '\0'; to chomp(line); | Mark Whitley | |
2001-04-17 | Applied patch from I.Q. to fix problem with sort -n. | Mark Whitley | |
2001-03-09 | A cleanup patch from Jeff Garzik to static-ify a number of | Eric Andersen | |
namespace polluting things that really should be static. | |||
2001-03-09 | Patchs from Jeff Garzik <jgarzik@mandrakesoft.com> to cleanup | Eric Andersen | |
warnings with glibc 2.2 and use always use xfopen -Erik | |||
2001-02-20 | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric 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-14 | This patch, put together by Manuel Novoa III, is a merge of work | Eric 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-01-27 | Fix header file usage -- there were many unnecessary header files included in | Eric 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 | |||
2000-12-20 | Rewrote. | Matt Kraai | |
2000-12-07 | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | |
compliant with the style guide. Everybody rebuild your tags file! | |||
2000-09-28 | + shortened main() a little, and a few aesthetic cleanups here & there. | John Beppu | |
2000-09-25 | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | |
-Erik | |||
2000-09-13 | Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead of | Matt Kraai | |
segfaulting or handling errors the same way themselves. | |||
2000-07-16 | Extract usage information into a separate file. | Matt Kraai | |
2000-07-14 | Use errorMsg rather than fprintf. | Matt Kraai | |
2000-06-28 | Yanked out the cstring_alloc() and cstring_lineFromFile() functions from | Mark Whitley | |
utility.c and replaced them with get_line_from_file() from the new grep.c. Also changed declaration in internal.h and replaced instances of cstring_lineFromFile() in dc.c and sort.c with get_line_from_file(). Tested them and they worked fine. |