aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-03-10In spite of the feature freeze, check in a complete rework of route whichManuel 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-09Note that /proc must be mounted for filesystem type autodetectionEric Andersen
to work. Without /proc mounted, one must explicitly specify the type of every filesystem being mounted.
2004-03-09David Anders (prpplague) submitted this patch to allow login to workEric Andersen
when the device nodes are symlinks on a read only file system.
2004-03-08Fix broken sort order flags.Manuel Novoa III
2004-03-08My bug. :-(Manuel Novoa III
2004-03-06Fix/eliminate use of atolEric Andersen
2004-03-06Patch from Matt Kraai to fix debian bug number 231994.Glenn L McGrath
There was an extra blank line preceding the first directory.
2004-03-06Woops, how did that get in thereGlenn L McGrath
2004-03-06Don't build these support functions for uClibc, as it always suppliesManuel Novoa III
versions.
2004-03-05Patch from John Powers, adds multicast (rfc2090) and timeout (rfc2349)Glenn L McGrath
options
2004-03-05Patch from duane no-name, optionally request additional itemsGlenn L McGrath
2004-03-05Patch 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-05Fix a typo, patch by Andrew VictorGlenn L McGrath
2004-03-05Patch from Tony J. White to allow paths to be configuredGlenn L McGrath
2004-03-05Patch by Denis Vlasenko to add forground support.Glenn L McGrath
2004-03-05Fix debugging output, patch by Hideki IWAMOTOGlenn L McGrath
2004-03-05Patch by Felipe Kellermann to fix a compiler compatability problemGlenn L McGrath
2004-03-05Patch from Steven Scholz to fix compiler warningsGlenn L McGrath
2004-03-05New applet, eject, by Peter WillisGlenn L McGrath
2004-03-05Close bracket in description from Peter Willis's eject appletGlenn L McGrath
2004-03-05Patch 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-03Fix a compile error identiefied by Steven Scholz.Glenn L McGrath
Declare variables first for compatability.
2004-03-01Check file has execute permission for the current user, minor formatingGlenn L McGrath
2004-02-26Quick fix for tftp truncation bugGlenn L McGrath
2004-02-25Patch from Denis Dowling to fix a ocuple of usage entriesGlenn L McGrath
2004-02-25Fix option handling, -i or -t must be given, if both ignore the -t.Glenn L McGrath
Use bb_getopt_ulflags.
2004-02-24Joe.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-23Prepare for releaseEric Andersen
2004-02-23bb_full_fd_action was incorrectly returning an error message causingGlenn L McGrath
major breaking.
2004-02-22Bump up version in preparation for -pre8Eric Andersen
2004-02-22Fernando 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-22Fix from Paul Kortekaas for syslog -C option, size should be in kB.Glenn L McGrath
2004-02-22Patch from Dmitry Zakharov, this line was missedfrom the last patchGlenn L McGrath
2004-02-22For the time being, revert the changes for detecting copyingEric 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-22Patch from Chris Larson (kergoth), to allow multiple directores to beGlenn L McGrath
unmounted at once.
2004-02-22Patch from Vodz, cleanup memory usage, send strdup error messages toGlenn L McGrath
syslog.
2004-02-22Vodz. last_patch_128Glenn 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)
2004-02-22Patch from James Zhu, telnetd window resizing support.Glenn L McGrath
2004-02-22Use bb_getopt_ulflags, marginal saving, better argument checking.Glenn L McGrath
2004-02-22Use /var/lib/hwclock for adjtime, its really a state file rather than aGlenn L McGrath
config file, so it should be in /etc, FHS mentions it also.
2004-02-22Patch from Florian Schirmer. compile fix for debug buildsGlenn L McGrath
2004-02-22Patch from Hideki IWAMOTO, output debugging messages to stderrGlenn L McGrath
2004-02-22remove duplicate header declarationsGlenn L McGrath
2004-02-22Fixup braces (patch from Thomas Geulig), run through indent and manuallyGlenn L McGrath
adjust.
2004-02-22Thomas Geulig, remove duplicate headerGlenn L McGrath
2004-02-22Update usage for ftpget and ftpputGlenn L McGrath
2004-02-22Ptch by Hideki IWAMOTO, fix a bug preventing tftp from getting orGlenn L McGrath
putting more than 0xffff blocks.
2004-02-22Return 1 upon failureGlenn L McGrath
2004-02-22No need to check proxy env variable twice, ignore proxy env variable ifGlenn L McGrath
its set to 0
2004-02-21Sometimes i get carried away with the use of function pointers, im sureGlenn L McGrath
it seemed like a good idea at the time.