| Commit message (Expand) | Author | Age | Files | Lines |
* | Undo all of the ugliness and some of the bloat from 15412. | landley | 2006-06-18 | 1 | -141/+17 |
* | skip_whitespace() shouldn't claim its return value is const, it doesn't know | landley | 2006-06-18 | 4 | -39/+21 |
* | danf writes: stty doesn't support baud rates > 460800 bps, the attached patch... | vapier | 2006-06-17 | 1 | -2/+35 |
* | Revert svn 15333. If you vfork, you must either exec or exit. (The parent is | landley | 2006-06-16 | 1 | -19/+5 |
* | Attempt at fixing bug 815 by upgrading bb_spawn() so that builtins are at | landley | 2006-06-14 | 1 | -1/+15 |
* | Random cleanup of platform.h. | landley | 2006-06-13 | 1 | -7/+0 |
* | - fix bug #887, in bb_get_chomped_line_from_file(), the last char was removed | aldot | 2006-06-10 | 1 | -9/+14 |
* | made "test" an ash built-in. | pgf | 2006-06-08 | 2 | -152/+1 |
* | sometimes daemonizing and vfork()/exit() is ok | vapier | 2006-06-07 | 1 | -5/+19 |
* | bb_xdaemon() isnt available on no-mmu systems | vapier | 2006-06-07 | 1 | -1/+3 |
* | comment all fields | vapier | 2006-06-07 | 1 | -4/+4 |
* | add reference to proc(5) | vapier | 2006-06-07 | 1 | -0/+1 |
* | - reuse strings and messages. Saves about 600B | aldot | 2006-06-07 | 1 | -1/+7 |
* | whitespace | vapier | 2006-06-07 | 1 | -1/+1 |
* | whitespace | vapier | 2006-06-07 | 1 | -1/+1 |
* | - make getopt_ulflags aware of CONFIG_GETOPT_LONG | aldot | 2006-05-31 | 1 | -1/+10 |
* | - convert xcalloc(1,x) to xzalloc | aldot | 2006-05-31 | 1 | -3/+3 |
* | - s/defined(__uClinux__)/BB_NOMMU/ | aldot | 2006-05-31 | 1 | -2/+2 |
* | Add SWAP_LE?? and SWAP_BE?? macros, and make things use them. Converts values | landley | 2006-05-29 | 1 | -15/+6 |
* | Change llist_add_* to take the address of the list rather than returning the new | landley | 2006-05-26 | 2 | -20/+11 |
* | Slight sanity fix: data is void *, not char *. And it's called data | landley | 2006-05-26 | 1 | -3/+3 |
* | - introduce and use bb_path_wtmp_file for portability (saves 11 Bytes). | aldot | 2006-05-26 | 1 | -0/+14 |
* | - make find_mount_point conditional on df and eject; Fixes `make hosttools´ on | aldot | 2006-05-26 | 1 | -2/+3 |
* | errno and h_errno values are not the same #876 by rfelker | vapier | 2006-05-26 | 1 | -2/+0 |
* | Rich Felker suggested removing dprintf() from watch, and one thing led to | landley | 2006-05-25 | 1 | -0/+34 |
* | A pending item in my tree I might as well check in: I plan to migrate calloc() | landley | 2006-05-19 | 1 | -0/+9 |
* | - remove emacs layout block as suggested by Robert P.J. Day | aldot | 2006-05-19 | 34 | -686/+28 |
* | - replace _PATH_DEVNULL with bb_dev_null | aldot | 2006-05-19 | 1 | -14/+3 |
* | - use uint32_t instead of __u32 | aldot | 2006-05-19 | 1 | -2/+2 |
* | - include strings.h | aldot | 2006-05-19 | 2 | -7/+9 |
* | - single KERNEL_VERSION(a,b,c) macro in platform.h | aldot | 2006-05-19 | 1 | -3/+4 |
* | Make md5 calculation always go through an the buffer so that A) we don't | landley | 2006-05-16 | 1 | -87/+42 |
* | - patch from Robert P. J. Day to use filter instead of findstring. | aldot | 2006-05-15 | 1 | -2/+2 |
* | pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the mail... | vapier | 2006-05-13 | 1 | -1/+1 |
* | Autodetect parts of a multipart file, from Robert P. Day's suggestion. | landley | 2006-05-12 | 1 | -19/+10 |
* | Bug fix from Vladimir Oleynik, and suggestion I add my copyright notice | landley | 2006-05-11 | 1 | -2/+3 |
* | Fiddling with llist to make memory management easier. Specifically, the | landley | 2006-05-08 | 2 | -11/+22 |
* | Remove a link that leaked in from the pending llist_t changes. | landley | 2006-05-08 | 1 | -1/+1 |
* | Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytes | landley | 2006-05-07 | 3 | -12/+3 |
* | Migrate endianness macros. | landley | 2006-05-05 | 1 | -1/+1 |
* | Not quite compiler independent, but we've never tried to be gcc independent | landley | 2006-05-04 | 1 | -10/+4 |
* | Whitespace and documentation cleanup from Dennis Vlasenko. | landley | 2006-05-03 | 1 | -53/+60 |
* | Portability tweak from Shaun Jackman, don't include asm/page.h directly. | landley | 2006-04-25 | 1 | -1/+1 |
* | Remove some #if 0 code. | landley | 2006-04-18 | 1 | -9/+0 |
* | - BusyBox is under GPL. | aldot | 2006-04-18 | 5 | -5/+5 |
* | use memmove() instead of bcopy() | vapier | 2006-04-16 | 1 | -6/+6 |
* | use memcmp() not bcmp() | vapier | 2006-04-16 | 1 | -2/+2 |
* | - patch from Denis Vlasenko to add and use bb_xopen3() | aldot | 2006-04-13 | 2 | -4/+11 |
* | - patch from Denis Vlasenko to add and use bb_xchdir() | aldot | 2006-04-12 | 2 | -1/+18 |
* | - patch from Denis Vlasenko to add bb_xbind() and bb_xlisten() | aldot | 2006-04-12 | 3 | -1/+36 |