Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-07-05 | rename log var to log_console so we dont override internal gcc/glibc log func | Mike Frysinger | |
2005-07-01 | 2005-06-30 Shaun Jackman <sjackman@gmail.com> | Mike Frysinger | |
* loginutils/getty.c: (open_tty): Use dup2 instead of close/dup. | |||
2005-07-01 | 2005-06-30 Shaun Jackman <sjackman@gmail.com> | Mike Frysinger | |
* loginutils/getty.c: Include utmp.h only if CONFIG_FEATURE_U_W_TMP is defined. (getty_main): Use ISSUE only if it is defined. | |||
2005-07-01 | Patch by jonlar in Bug 312 to split the U_W_TMP feature into sep UTMP and ↵ | Mike Frysinger | |
WTMP options | |||
2005-06-30 | patch by Shaun Jackman to combine dup/close funcs into dup2 | Mike Frysinger | |
2005-06-29 | dont use f_frsize unless linux-2.6.0 or better | Mike Frysinger | |
2005-06-28 | rip out all the non-linux code and ugly workarounds | Mike Frysinger | |
2005-06-24 | tweak signed/unsigned char usage to avoid mismatches | Mike Frysinger | |
2005-06-24 | - remove extra/unneeded function call. testing svn | Ned Ludd | |
2005-06-23 | Enabling runtime SUID/SGID configuration via /etc/busybox.conf | Eric Andersen | |
is not a very good default. Better to default to having it off and let people get the default behavior. If they want to enable /etc/busybox.conf they should explicitly ask for it. | |||
2005-06-23 | applets specified as _BB_SUID_ALWAYS in applets.h should also select | Eric Andersen | |
CONFIG_FEATURE_SUID to ensure proper behavior when installed. | |||
2005-06-23 | characters encoded as html should have a trailing semicolon | Eric Andersen | |
to be interpreted properly | |||
2005-06-20 | Rodney Radford submitted ipcs and ipcrm (system V IPC stuff). They could use | Rob Landley | |
some more work to shrink them down. | |||
2005-06-17 | Tito says: unify verbose/quiet flags | Mike Frysinger | |
2005-06-17 | Tito says: strip unused program_name | Mike Frysinger | |
Vladimir N. Oleynik says: uname() can be replaced with get_kernel_revision() | |||
2005-06-12 | use xmalloc instead of malloc | Mike Frysinger | |
2005-06-11 | use malloc instead of xmalloc | Mike Frysinger | |
2005-06-11 | use xmalloc() instead of malloc() | Mike Frysinger | |
2005-06-11 | use xmalloc() and bb_perror_msg_and_die() | Mike Frysinger | |
2005-06-11 | Note that memory allocaiton needs to be cleaned up too. | Rob Landley | |
2005-06-11 | remove com_err.h includes | Mike Frysinger | |
2005-06-11 | DOS only crap | Mike Frysinger | |
2005-06-11 | import initial fat mke2fs | Mike Frysinger | |
2005-06-11 | import tune2fs support | Mike Frysinger | |
2005-06-11 | fix signed/unsigned char pointers | Mike Frysinger | |
2005-06-11 | oops, we only want to affect local CFLAGS | Mike Frysinger | |
2005-06-11 | initial fat tune2fs/findfs/e2label source | Mike Frysinger | |
2005-06-11 | replace simple is_null func with a memcmp define | Mike Frysinger | |
2005-06-11 | force including of e2fsbb.h and move the HAVE_* defines to it | Mike Frysinger | |
2005-06-11 | move config.h requirement to the actual .depend target rather than the ↵ | Mike Frysinger | |
depend alias | |||
2005-06-11 | make sure clean removes objects in subdirs | Mike Frysinger | |
2005-06-11 | need strings.h for ffs() | Mike Frysinger | |
2005-06-11 | only define some variables if legacy EXT2FS_ENABLE_SWAPFS is enabled | Mike Frysinger | |
2005-06-11 | replace simple functions with defines | Mike Frysinger | |
2005-06-11 | whitespace updates | Mike Frysinger | |
2005-06-11 | replace functions with defines | Mike Frysinger | |
2005-06-11 | whitespace updates | Mike Frysinger | |
2005-06-11 | whitespace updates | Mike Frysinger | |
2005-06-11 | recode functions to shrink size | Mike Frysinger | |
2005-06-11 | setup the HAVE_* defines | Mike Frysinger | |
2005-06-09 | About time to just apply this and kill off the patches | Eric Andersen | |
2005-06-07 | Tito posted a devfsd error message fix. It's highly deprecated and will | Rob Landley | |
presumably be removed eventually (use udev), but as long as it's in there. Tito says: The sense of this patch is to call: read_config_file_err: #ifdef CONFIG_DEVFSD_VERBOSE msg_logger(((optional == 0 ) && (errno == ENOENT))? DIE : NO_DIE, LOG_ERR, "read config file: %s: %m\n", path); #else if(optional == 0 && errno == ENOENT) exit(EXIT_FAILURE); #endif just after the failure of the call that set errno ( stat and fopen) to avoid false error messages. | |||
2005-06-07 | Clean up strings.c to use busybox's option processing. Bug 006, apparently. | Rob Landley | |
2005-06-07 | Patch from Dmitry Zakharov: | Rob Landley | |
Charlie Brady wrote: > Here's another awk parsing problem - unary post increment - pre is fine: > >bash-2.05a$ echo 2,3 | gawk -F , '{ $2++ }' >bash-2.05a$ echo 2,3 | /tmp/busybox/busybox awk -F , '{ $2++ }' >awk: cmd. line:1: Unexpected token > Here's a fix for this. There is another problem with constructions like "print (A+B) ++C", I don't know whether somebody uses such constructions (fixing both these problems would require very serious change in awk code). | |||
2005-06-07 | Thus spake Brenda J. Butler: | Rob Landley | |
We were seeing some timeouts when getting files with the busybox tftp client. With tcpdump, we saw that the tftp client was receiving blocks and ack'ing them, but the server was failing to receive the occasional ack. When that happened, the server would send the last block over again, but the tftp client was expecting the next block. This patch allows the client to recover from this situation (it sends an ack for the repeat block but does not write it to the local file). I hope it meets your approval, please don't hesitate to send me comments for improvement. The patch is against "head" in svn, I tested it on an older version of busybox in our environment. It applied cleanly to the older version. Credit for this goes to my co-worker John McCarthy for finding it and me for fixing it (assuming it works for everyone else too). cheerio, bjb | |||
2005-05-28 | Shaun Jackman submitted a patch converting an allocation to use | Rob Landley | |
CONFIG_RESERVE_BUFFER. (Rob Landley removed an #ifdef, per discussion on the list.) | |||
2005-05-28 | Patch from Shaun Jackman to save a few bytes. | Rob Landley | |
2005-05-26 | Tobias Krawutschke found a bug where the DHCP client would accept packets | Rob Landley | |
with the wrong ARP address, meaning we could easily get somebody else's IP. That is a bad thing, and this is the minimal two-line fix. | |||
2005-05-20 | Add readprofile applet support. | Paul Mundt | |
2005-05-18 | Patch from Colin Watson (mangled slightly by Rob Landley): | Rob Landley | |
This patch implements the 'T' command in sed. This is a GNU extension, but one of the udev hotplug scripts uses it, so I need it in busybox anyway. Includes a test; 'svn add testsuite/sed/sed-branch-conditional-inverted' after applying. |