| Commit message (Expand) | Author | Age | Files | Lines |
* | Cleaup read() and write() variants, plus a couple of new functions like | Rob Landley | 2006-07-16 | 8 | -32/+84 |
* | We need xsetuid() and xsetgid() because per-user process resource limits can | Rob Landley | 2006-07-15 | 1 | -0/+12 |
* | Tito writes: If the gecos field of an user is empty, obscure reports a false ... | Mike Frysinger | 2006-07-15 | 1 | -1/+1 |
* | More minor tweaks. | Rob Landley | 2006-07-12 | 2 | -10/+2 |
* | decuddle () from for/if/while | Mike Frysinger | 2006-07-12 | 1 | -14/+14 |
* | A couple things that got tangled up in my tree, easier to check in both than | Rob Landley | 2006-07-12 | 1 | -160/+40 |
* | Patch from Tito to remove pwd_to_spwd (which we don't actually need), with | Rob Landley | 2006-07-11 | 2 | -75/+0 |
* | Denis Vlasenko spotted the lack of bounds checking in my first attempt at | Rob Landley | 2006-07-11 | 1 | -11/+14 |
* | Replace current verbose GPL stuff in libbb/*.c with one-line GPL boilerplate. | "Robert P. J. Day" | 2006-07-10 | 36 | -404/+36 |
* | Add itoa and utoa to see what Denis Vlasenko thinks. | Rob Landley | 2006-07-10 | 1 | -1/+50 |
* | Attempt to address Shaun Jackman's problem adding "busybox: busybox.bflt" to | Rob Landley | 2006-07-06 | 1 | -0/+6 |
* | Correct the comment to match the code. | "Robert P. J. Day" | 2006-07-02 | 1 | -1/+1 |
* | Standardize on the vi editing directives being on the first line. | "Robert P. J. Day" | 2006-07-02 | 13 | -1/+13 |
* | Allow a user-configurable minimum password length. | "Robert P. J. Day" | 2006-07-02 | 2 | -7/+9 |
* | More removal of "#if 0" content. | "Robert P. J. Day" | 2006-07-01 | 1 | -3/+0 |
* | Remove all usage of the "register" storage class specifier. | "Robert P. J. Day" | 2006-07-01 | 1 | -10/+10 |
* | This kind of paranoia is a debug option at best. | Rob Landley | 2006-06-30 | 1 | -1/+1 |
* | Fix bug http://bugs.busybox.net/view.php?id=874 where hexdump -C got its | Rob Landley | 2006-06-28 | 1 | -2/+3 |
* | Fix http://bugs.busybox.net/view.php?id=906 which could cause failures in top. | Rob Landley | 2006-06-27 | 1 | -1/+2 |
* | Whitespace. (Vim's auto-indent is kind of annoying at times, like "daytime" | Rob Landley | 2006-06-25 | 1 | -1/+1 |
* | Fix a possible race condition if two processes try to claim the same loop | Rob Landley | 2006-06-25 | 1 | -3/+4 |
* | The logic to make cp -d or -P treat things like regular files should only | Rob Landley | 2006-06-24 | 1 | -21/+14 |
* | The type changed too. | Rob Landley | 2006-06-20 | 1 | -2/+2 |
* | Use the new names for tty_baud_to_value() and tty_value_to_baud() again. | Peter Kjellerstedt | 2006-06-20 | 1 | -5/+5 |
* | Revert the last two patches to go back to a state before this file was | Rob Landley | 2006-06-20 | 1 | -16/+94 |
* | Undo all of the ugliness and some of the bloat from 15412. | Rob Landley | 2006-06-18 | 1 | -141/+17 |
* | skip_whitespace() shouldn't claim its return value is const, it doesn't know | Rob Landley | 2006-06-18 | 4 | -39/+21 |
* | danf writes: stty doesn't support baud rates > 460800 bps, the attached patch... | Mike Frysinger | 2006-06-17 | 1 | -2/+35 |
* | Revert svn 15333. If you vfork, you must either exec or exit. (The parent is | Rob Landley | 2006-06-16 | 1 | -19/+5 |
* | Attempt at fixing bug 815 by upgrading bb_spawn() so that builtins are at | Rob Landley | 2006-06-14 | 1 | -1/+15 |
* | Random cleanup of platform.h. | Rob Landley | 2006-06-13 | 1 | -7/+0 |
* | - fix bug #887, in bb_get_chomped_line_from_file(), the last char was removed | Bernhard Reutner-Fischer | 2006-06-10 | 1 | -9/+14 |
* | made "test" an ash built-in. | Paul Fox | 2006-06-08 | 2 | -152/+1 |
* | sometimes daemonizing and vfork()/exit() is ok | Mike Frysinger | 2006-06-07 | 1 | -5/+19 |
* | bb_xdaemon() isnt available on no-mmu systems | Mike Frysinger | 2006-06-07 | 1 | -1/+3 |
* | comment all fields | Mike Frysinger | 2006-06-07 | 1 | -4/+4 |
* | add reference to proc(5) | Mike Frysinger | 2006-06-07 | 1 | -0/+1 |
* | - reuse strings and messages. Saves about 600B | Bernhard Reutner-Fischer | 2006-06-07 | 1 | -1/+7 |
* | whitespace | Mike Frysinger | 2006-06-07 | 1 | -1/+1 |
* | whitespace | Mike Frysinger | 2006-06-07 | 1 | -1/+1 |
* | - make getopt_ulflags aware of CONFIG_GETOPT_LONG | Bernhard Reutner-Fischer | 2006-05-31 | 1 | -1/+10 |
* | - convert xcalloc(1,x) to xzalloc | Bernhard Reutner-Fischer | 2006-05-31 | 1 | -3/+3 |
* | - s/defined(__uClinux__)/BB_NOMMU/ | Bernhard Reutner-Fischer | 2006-05-31 | 1 | -2/+2 |
* | Add SWAP_LE?? and SWAP_BE?? macros, and make things use them. Converts values | Rob Landley | 2006-05-29 | 1 | -15/+6 |
* | Change llist_add_* to take the address of the list rather than returning the new | Rob Landley | 2006-05-26 | 2 | -20/+11 |
* | Slight sanity fix: data is void *, not char *. And it's called data | Rob Landley | 2006-05-26 | 1 | -3/+3 |
* | - introduce and use bb_path_wtmp_file for portability (saves 11 Bytes). | Bernhard Reutner-Fischer | 2006-05-26 | 1 | -0/+14 |
* | - make find_mount_point conditional on df and eject; Fixes `make hosttools´ on | Bernhard Reutner-Fischer | 2006-05-26 | 1 | -2/+3 |
* | errno and h_errno values are not the same #876 by rfelker | Mike Frysinger | 2006-05-26 | 1 | -2/+0 |
* | Rich Felker suggested removing dprintf() from watch, and one thing led to | Rob Landley | 2006-05-25 | 1 | -0/+34 |