Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-13 | pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵ | Mike Frysinger | |
mailing list | |||
2006-05-11 | rename | Mike Frysinger | |
2006-05-11 | remove files not related to busybox | Mike Frysinger | |
2006-05-10 | - add helptext for --retries | Bernhard Reutner-Fischer | |
2006-05-08 | add back in udhcp support | Mike Frysinger | |
2006-03-23 | remove in place of external link | Mike Frysinger | |
2006-03-23 | make the makefile a little more flexible so we can store in either location | Mike Frysinger | |
2006-03-23 | sync busybox and udhcp trees | Mike Frysinger | |
2006-03-20 | Roy Walker writes: | Eric Andersen | |
Here is a patch against the current subversion repository, that makes udhcpc have an adjustable timeout. Works for both foreground and before it drops to the background. This brings it more in-line with ISC dhcpc. Use like so: udhcpc --timeout=10 ... or udhcpc -T 10 ... Still shooting for 1.1.1 this month? Would really be great if you could get this in that release. Please give credit to Paul Pacheco - ppacheco@gmail.com. | |||
2006-03-13 | - revert back to r14406 | Bernhard Reutner-Fischer | |
2006-03-09 | - backout using features which are not available with the previous stable | Bernhard Reutner-Fischer | |
version of make (3.71.1). | |||
2006-03-02 | - use absolute path for top_builddir and top_srcdir. | Bernhard Reutner-Fischer | |
Fixes make trying to include the very same file in an endless loop. | |||
2006-03-01 | - fixes parallel builds (make -j) | Bernhard Reutner-Fischer | |
- use less resources for the buildsystem itself | |||
2006-03-01 | Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x) | Rob Landley | |
from before "if(x) free(x)". | |||
2006-02-22 | Patch from Denis Vlasenko to constify things and fix a few typos. | Rob Landley | |
2006-02-22 | Bug 751: file handle leaks can add up until available filehandles for the | Rob Landley | |
process are exhausted. | |||
2006-02-21 | Don't build directory libraries unless we're building an applet that needs it. | Rob Landley | |
Cherry-picked from Devin Bayer's big MacOS X patch. | |||
2006-02-21 | Missed a file in the last checkin, won't build without this... | Rob Landley | |
2006-02-20 | Patch from Giuseppe Ciotta to specify retry count. | Rob Landley | |
2006-02-02 | make the build system puuuuuuuuuuurty | Mike Frysinger | |
2006-01-30 | fix up yet more annoying signed/unsigned and mixed type errors | Eric Andersen | |
2006-01-25 | just whitespace | Tim Riker | |
2006-01-22 | - add platform.h. | Bernhard Reutner-Fischer | |
- use shorter boilerplate while at it. | |||
2006-01-15 | - shared libbusybox. | Bernhard Reutner-Fischer | |
- IMA compilation option (aka IPO, IPA,..) Please holler if i broke something.. | |||
2005-09-23 | more make safe the exported namespace for udhcp. Move to bb-specific file ↵ | "Vladimir N. Oleynik" | |
for reduce change into udhcp-CVS | |||
2005-09-23 | remove 1 exported | "Vladimir N. Oleynik" | |
2005-09-22 | move a couple of functions from common code (options.c) to udhcpd private | Paul Fox | |
code (files.c) to make udhcpc a little smaller. | |||
2005-09-22 | add support for setting the dhcp vendor class option (option 60). | Paul Fox | |
udhcpc now has a -V (--vendorclass), which will replace the default "udhcpRELEASE" string in this option. | |||
2005-09-22 | safe exported namespace for udhcp. Not full, bore :-( | "Vladimir N. Oleynik" | |
2005-09-08 | Fix the warning by rewriting the function to be smaller and simpler. | Rob Landley | |
I'd appreciate somebody on a __BIG_ENDIAN platform testing this out; I haven't got the hardware... | |||
2005-09-01 | Off by one error in max_leases sanity check. Bug 349, apparently. | Rob Landley | |
2005-08-01 | allow suppression of default client-id. fixes bug 000037. allows | Paul Fox | |
busybox to match kernel and u-boot behavior with respect to client-id. | |||
2005-07-27 | use toplevel ARFLAGS and update default ARFLAGS to be quiet | Mike Frysinger | |
2005-07-21 | remove duplicate check against chaddr. | Paul Fox | |
2005-07-20 | applying fix for: | Paul Fox | |
0000260: udhcpc doesn't validate client hardware address | |||
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-04 | Revert the uptime() removal. Let the list sort it out... | Rob Landley | |
2005-05-04 | Patch from Shaun Jackman: | Rob Landley | |
Replace uptime with time(NULL). time is more portable than uptime and eliminates the need to define uptime, reducing code size slightly. | |||
2005-04-16 | Patch from Bernhard Fischer to make a bunch of symbols static | Eric Andersen | |
which were otherwise cluttering the global namespace. | |||
2005-04-16 | In Bug 209, bernhardf writes: | Mike Frysinger | |
struct named { named_field: init, }; appear to be depraced by now; rather use C{99} format as in struct named { .named_field = init, }; | |||
2004-12-06 | merge from udhcp module | Mike Frysinger | |
2004-10-08 | Wade Berrier writes: | Eric Andersen | |
Hello, Here's a patch for a first attempt at static leases for udhcpd. Included in the tarball are 2 files (static_leases.c, static_leases.h) and a patch against the latest cvs. In the config file you can configure static leases with the following format: static_lease 00:60:08:11:CE:4E 192.168.0.54 static_lease 00:60:08:11:CE:3E 192.168.0.44 Comments/suggestions/improvements are welcome. Wade | |||
2004-10-08 | egor duda writes: | Eric Andersen | |
Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor | |||
2004-05-19 | use busybox sysinfo struct | Russ Dill | |
2004-05-19 | Fix a compile problem | Eric Andersen | |
2004-05-19 | fix timewarp in client (server fix later) | Russ Dill | |
2004-05-19 | remove uneccessary check (already done in pidfile.c) | Russ Dill | |
2004-05-19 | fix memory leak caused by switch to vfork | Russ Dill | |
2004-04-25 | Update my email address, document some of my tasks in the AUTHORS file | Glenn L McGrath | |
2004-04-14 | Larry Doolittle writes: | Eric Andersen | |
This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry |