Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-05-23 | This patch from Vitezslav Batrla, is a cleaner fix for the | Eric Andersen | |
problem with syslogd logging the '<' char. | |||
2003-05-22 | Patch from Russell Coker: | Eric Andersen | |
The attached patch fixes a compilation error. If you compile ping6 without the CONFIG_FEATURE_FANCY_PING6 option then the compile will fail without this patch. | |||
2003-05-19 | Patch from Glenn Engel | Glenn L McGrath | |
- more comments - larger allowed number of CGI script variables - ifdefs for regression test hooks - default to ./ rather than /www (if unspecified) for compatibility with earlier versions. - Allow ip: as a synomym for A: rules for compatibility with earlier versions. - Setting of CGI_ARGLIST_ when automatic setting of env vars for form scripting is utilized. This helps with minimal systems like openap. | |||
2003-05-18 | Handle -O preceding -x. | Matt Kraai | |
2003-05-16 | Apply patch from Georg Magschok to fix syslog behavior so that the | Eric Andersen | |
'>' charactor can be logged, per rfc3164. Also, a small patch from me to fix it so we use MAXLINE when allocating the buffer, which is consistant with use everywhere else. This is needed since uClibc defines BUFSIZE as 255, causing lines to be truncated at 255... | |||
2003-05-14 | Part of a patch from Glenn Engel, updates httpd help | Glenn L McGrath | |
2003-05-14 | vodz, last_patch_85 | Glenn L McGrath | |
2003-05-13 | Re-use existing variables, patch from Tito | Glenn L McGrath | |
2003-05-13 | last_patch84 by Vodz. | Glenn L McGrath | |
2003-05-13 | Add some missing lines for getty, patch by Steven Scholz | Glenn L McGrath | |
2003-05-13 | Fix \l so it doesnt print the character as well as the tty, from old | Glenn L McGrath | |
patch by Nick Fedchik | |||
2003-05-11 | minit, a Minimal init system. | Glenn L McGrath | |
2003-05-08 | Use xopen instead of xfopen | Glenn L McGrath | |
2003-05-02 | Patch from Dmitry V. Levin to fix a fd leak | Eric Andersen | |
2003-04-27 | A couple of patches from Tito <farmatito@tiscali.it> | Eric Andersen | |
2003-04-27 | Use bb_xgetlarg | Glenn L McGrath | |
2003-04-27 | New applet, fold | Glenn L McGrath | |
2003-04-27 | Config option to create an fgrep alias | Glenn L McGrath | |
2003-04-27 | Fix segfault when cleaning up | Glenn L McGrath | |
2003-04-27 | grep -f support, adds only 60 Bytes, but regex's now compiled as | Glenn L McGrath | |
required, rather than being pre-compiled. | |||
2003-04-26 | Always preserve date | Glenn L McGrath | |
2003-04-26 | New commands, 'G' and 'H' | Glenn L McGrath | |
2003-04-26 | Add the -d option, its used by old versions of config.guess, change to | Glenn L McGrath | |
use getopt. | |||
2003-04-26 | iPatch from waldi, fixes usage of ip route flush (from)? (match|exact) | Glenn L McGrath | |
2003-04-25 | Patch from Steven Scholz to fix telnetd compile problem | Eric Andersen | |
2003-04-24 | There have been many reports of init failing to reboot and/or failing to halt | Eric Andersen | |
over the years. Well I finally took the time to track this down. It turns out that inside linux/kernel/sys.c the kernel will call machine_halt(); do_exit(0); when halting, or will call machine_power_off(); do_exit(0); during a reboot. Unlike sysv init, we call reboot from within the init process, so if the call to machine_halt() or machine_power_off() returns, the call to do_exit(0) will cause the kernel to panic. Which is a very bad thing to happen. So I just added this little patch to fork and call the reboot syscall from within the forked child process, thereby neatly avoiding the problem. But IMHO, both calls to do_exit(0) within linux/kernel/sys.c are bugs and should be fixed. -Erik | |||
2003-04-21 | unlink a previous file before its extracted | Glenn L McGrath | |
2003-04-21 | sync with waldi | Glenn L McGrath | |
2003-04-21 | unlink() an existing file, before opening it, simply truncating can | Glenn L McGrath | |
cause nasty problems if overwriting glibc, spotted by waldi. | |||
2003-04-21 | Add link to SimplyGNUstep | Eric Andersen | |
2003-04-19 | Patch from David Updegraff to use calloc so that forward pointers start out | Eric Andersen | |
NULL, and so it can handle format strings that have stuff _after_ the last %? specification | |||
2003-04-19 | Patch from David Updegraff to avoid corrupting memory while parsing the | Eric Andersen | |
networks/iterfaces file with next_word routine. Without this, next_word increments one beyond the end of the string. | |||
2003-04-16 | Minor .o file naming change | Eric Andersen | |
2003-04-16 | enable CONFIG_USE_BB_PWD_GRP for the debian installer, | Eric Andersen | |
to prevent glibc from trying and failing to use NSS junk that is not present. -Erik | |||
2003-04-12 | Fix logic error in grouped commands | Glenn L McGrath | |
2003-04-11 | Fix up indenting | Glenn L McGrath | |
2003-04-09 | Really fix the 'r' command | Glenn L McGrath | |
2003-04-09 | Fix the sed 'r' command | Glenn L McGrath | |
2003-04-09 | fix substitution when replacing with &, we shouldnt check for an escape ↵ | Glenn L McGrath | |
charcter. Its already been taken care of _somewhere_ else | |||
2003-04-09 | Label ends at a newline, update comments, rename linked list field | Glenn L McGrath | |
2003-04-08 | Run through indent | Glenn L McGrath | |
2003-04-08 | Fixes block commands to correctly identify end of block, recognise the #n ↵ | Glenn L McGrath | |
directive, fix substitue command when regex isnt specified | |||
2003-04-07 | Add hold space commands 'g', 'h', 'x' | Glenn L McGrath | |
2003-04-07 | Rename "line" to pattern_space to be more descriptive and closer to the ↵ | Glenn L McGrath | |
POSIX description | |||
2003-04-06 | Sync with waldi's package | Glenn L McGrath | |
2003-04-06 | Preparation for the new net-udeb based on required applets documented at | Glenn L McGrath | |
http://cvs.debian.org/debian-installer/doc/busybox-applets.txt | |||
2003-04-04 | Add more help text | Eric Andersen | |
2003-04-04 | Test that cvs commit messages are working properly | Eric Andersen | |
-Erik | |||
2003-04-03 | Fix 'thinko'. | Manuel Novoa III | |
2003-04-02 | Yet another rather large face lift. It now works for me as expected. | Eric Andersen | |
-Erik |