Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-15 | Oops. Using the wrong variable was a rather stupid | Eric Andersen | |
thing for me to do. | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2004-03-13 | I redid route. | Manuel Novoa III | |
2004-03-13 | Update docs for start_stop_daemon to match reality. Update | Eric Andersen | |
the reality a bit to better match debian behavior. | |||
2004-03-13 | Fix some doc generation problems | Eric Andersen | |
2004-03-12 | Hideki IWAMOTO writes: | Eric Andersen | |
Current `tr' implementation has a problem, if `plain char' is signed. [current cvs version] >echo a | _install/usr/bin/tr '\0' '\377' Segmentation fault (core dumped) [patched version] >echo a | _install/usr/bin/tr '\0' '\377' a | |||
2004-03-12 | Fix some goofy formatting | Eric Andersen | |
2004-03-12 | Add prototypes for safe_strtol and friends | Eric Andersen | |
2004-03-12 | Fix awk entry, which was not showing up in BusyBox.txt for some reason | Eric Andersen | |
2004-03-11 | Paul Mundt, lethal at linux-sh dot org writes: | Eric Andersen | |
Here's a follow-up replacement to the patch I sent earlier, this adjusts some of the semantics of the dynamic variable setting. Namely, dynamic vars can hook a set handler (which RANDOM uses to adjust the seed). They'll only lose their dynamic status if they're unset. I've used the same approach that bash does to come up with the random number, mostly just for consistency. For example: $ echo $RANDOM 13759 $ echo $RANDOM 20057 $ echo $RANDOM 1502 $ export RANDOM=42 $ echo $RANDOM 24179 $ echo $RANDOM 2046 $ unset RANDOM $ echo $RANDOM $ export RANDOM=42 $ echo $RANDOM 42 $ | |||
2004-03-10 | Patch from Thomas Frohlich to fix an option ordering bug of mine. | Glenn L McGrath | |
2004-03-10 | When displaying the size in 1kB blocks round up if an odd number of | Glenn L McGrath | |
blocks | |||
2004-03-10 | Patch by Seth W. Klein, the -l switch was reversed | Glenn L McGrath | |
2004-03-10 | In spite of the feature freeze, check in a complete rework of route which | Manuel Novoa III | |
fixes some bugs, adds some error checking, and removes _lots_ of bloat. Text size on i386... old new ipv6 5425 3523 no ipv6 3143 2193 | |||
2004-03-09 | Note that /proc must be mounted for filesystem type autodetection | Eric Andersen | |
to work. Without /proc mounted, one must explicitly specify the type of every filesystem being mounted. | |||
2004-03-09 | David Anders (prpplague) submitted this patch to allow login to work | Eric Andersen | |
when the device nodes are symlinks on a read only file system. | |||
2004-03-08 | Fix broken sort order flags. | Manuel Novoa III | |
2004-03-08 | My bug. :-( | Manuel Novoa III | |
2004-03-06 | Fix/eliminate use of atol | Eric Andersen | |
2004-03-06 | Patch from Matt Kraai to fix debian bug number 231994. | Glenn L McGrath | |
There was an extra blank line preceding the first directory. | |||
2004-03-06 | Woops, how did that get in there | Glenn L McGrath | |
2004-03-06 | Don't build these support functions for uClibc, as it always supplies | Manuel Novoa III | |
versions. | |||
2004-03-05 | Patch from John Powers, adds multicast (rfc2090) and timeout (rfc2349) | Glenn L McGrath | |
options | |||
2004-03-05 | Patch from duane no-name, optionally request additional items | Glenn L McGrath | |
2004-03-05 | Patch by Andrew Victor, | Glenn L McGrath | |
In arpping.h, fix structure alignment of "struct arpMsg". GCC can insert padding in the structure which causes udhcpd to send an invalid ARP packet on the network. It will then not receive a valid reply, which can cause it to assign an IP address that's already in use on the network. (With kernels before 2.4.20, the "struct ethhdr" in linux/if_ether.h wasn't marked as packed. This is also an issue if your toolchain was built with a pre-2.4.20 kernel). | |||
2004-03-05 | Fix a typo, patch by Andrew Victor | Glenn L McGrath | |
2004-03-05 | Patch from Tony J. White to allow paths to be configured | Glenn L McGrath | |
2004-03-05 | Patch by Denis Vlasenko to add forground support. | Glenn L McGrath | |
2004-03-05 | Fix debugging output, patch by Hideki IWAMOTO | Glenn L McGrath | |
2004-03-05 | Patch by Felipe Kellermann to fix a compiler compatability problem | Glenn L McGrath | |
2004-03-05 | Patch from Steven Scholz to fix compiler warnings | Glenn L McGrath | |
2004-03-05 | New applet, eject, by Peter Willis | Glenn L McGrath | |
2004-03-05 | Close bracket in description from Peter Willis's eject applet | Glenn L McGrath | |
2004-03-05 | Patch from Vernon Sauder. | Glenn L McGrath | |
The off_t type is not a consistent size; it depends on the kernel options (something about large file support). Therefore, the format string for printing an address is not always the same. | |||
2004-03-03 | Fix a compile error identiefied by Steven Scholz. | Glenn L McGrath | |
Declare variables first for compatability. | |||
2004-03-01 | Check file has execute permission for the current user, minor formating | Glenn L McGrath | |
2004-02-26 | Quick fix for tftp truncation bug | Glenn L McGrath | |
2004-02-25 | Patch from Denis Dowling to fix a ocuple of usage entries | Glenn L McGrath | |
2004-02-25 | Fix option handling, -i or -t must be given, if both ignore the -t. | Glenn L McGrath | |
Use bb_getopt_ulflags. | |||
2004-02-24 | Joe.C, joe at numa dot com dot tw writes: | Eric Andersen | |
Hi, When downloading files over slow network (e.g. wireless/ internet) using IE, sometimes it will stop downloading and show error message 'connection closed' when the download is almost complete. This is because IE can't handle server close connection properly. Apache http_main.c fix this problem by close the connection after client close the connection. This patch do exactly the same thing. Please consider include this patch. Joe.C | |||
2004-02-23 | Prepare for release | Eric Andersen | |
2004-02-23 | bb_full_fd_action was incorrectly returning an error message causing | Glenn L McGrath | |
major breaking. | |||
2004-02-22 | Bump up version in preparation for -pre8 | Eric Andersen | |
2004-02-22 | Fernando Silveira writes: | Eric Andersen | |
Hi, Well, I made this patch a long time ago (08/2002) because it was a need of a project, but had no time to send it to you. It adds support to `autologin' option of the telnet protocol. It has been used since made with busybox 0.60.3 at production and I had no problems with it. I have ported it to the HEAD revision of the CVS server (20040211) and I hope you enjoy and apply it to the official sources. :) Thanks a lot! | |||
2004-02-22 | Fix from Paul Kortekaas for syslog -C option, size should be in kB. | Glenn L McGrath | |
2004-02-22 | Patch from Dmitry Zakharov, this line was missedfrom the last patch | Glenn L McGrath | |
2004-02-22 | For the time being, revert the changes for detecting copying | Eric Andersen | |
a directory into itself. It is harder to do this correctly than it appears. Not trying at all seems a better compromise for the time being, untill we can implement this correctly. | |||
2004-02-22 | Patch from Chris Larson (kergoth), to allow multiple directores to be | Glenn L McGrath | |
unmounted at once. | |||
2004-02-22 | Patch from Vodz, cleanup memory usage, send strdup error messages to | Glenn L McGrath | |
syslog. | |||
2004-02-22 | Vodz. last_patch_128 | Glenn L McGrath | |
- declare applet_using as static from applets.c - small correction to cmdedit, previous version cleared history after Ctrl-C - small spelling correction (by Friedrich Lobenstock) |