summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove cruftEric Andersen2003-05-261-2/+0
|
* Vodz, last_path_87, formatiing changesGlenn L McGrath2003-05-261-275/+306
|
* Vodz, last_patch_86Glenn L McGrath2003-05-2617-115/+121
|
* Update mkdep, per the "touchless dependencies for 2.4.x" patchEric Andersen2003-05-241-14/+14
| | | | | from Geert Uytterhoeven posted to the lkml. -Erik
* oopsEric Andersen2003-05-231-1/+2
|
* This patch from Vitezslav Batrla, is a cleaner fix for theEric Andersen2003-05-231-15/+5
| | | | problem with syslogd logging the '<' char.
* Patch from Russell Coker:Eric Andersen2003-05-221-2/+3
| | | | | | 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.
* Patch from Glenn EngelGlenn L McGrath2003-05-191-39/+139
| | | | | | | | | | | | - 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.
* Handle -O preceding -x.Matt Kraai2003-05-182-1/+6
|
* Apply patch from Georg Magschok to fix syslog behavior so that theEric Andersen2003-05-161-8/+18
| | | | | | | | '>' 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...
* Part of a patch from Glenn Engel, updates httpd helpGlenn L McGrath2003-05-141-31/+43
|
* vodz, last_patch_85Glenn L McGrath2003-05-141-39/+38
|
* Re-use existing variables, patch from TitoGlenn L McGrath2003-05-131-7/+5
|
* last_patch84 by Vodz.Glenn L McGrath2003-05-131-327/+284
|
* Add some missing lines for getty, patch by Steven ScholzGlenn L McGrath2003-05-131-0/+2
|
* Fix \l so it doesnt print the character as well as the tty, from oldGlenn L McGrath2003-05-131-1/+2
| | | | patch by Nick Fedchik
* minit, a Minimal init system.Glenn L McGrath2003-05-117-0/+1051
|
* Use xopen instead of xfopenGlenn L McGrath2003-05-081-5/+4
|
* Patch from Dmitry V. Levin to fix a fd leakEric Andersen2003-05-021-0/+1
|
* A couple of patches from Tito <farmatito@tiscali.it>Eric Andersen2003-04-272-18/+21
|
* Use bb_xgetlargGlenn L McGrath2003-04-271-9/+1
|
* New applet, foldGlenn L McGrath2003-04-275-0/+222
|
* Config option to create an fgrep aliasGlenn L McGrath2003-04-272-0/+12
|
* Fix segfault when cleaning upGlenn L McGrath2003-04-271-1/+1
|
* grep -f support, adds only 60 Bytes, but regex's now compiled asGlenn L McGrath2003-04-271-27/+48
| | | | required, rather than being pre-compiled.
* Always preserve dateGlenn L McGrath2003-04-261-2/+1
|
* New commands, 'G' and 'H'Glenn L McGrath2003-04-261-1/+21
|
* Add the -d option, its used by old versions of config.guess, change toGlenn L McGrath2003-04-261-3/+26
| | | | use getopt.
* iPatch from waldi, fixes usage of ip route flush (from)? (match|exact)Glenn L McGrath2003-04-261-0/+14
|
* Patch from Steven Scholz to fix telnetd compile problemEric Andersen2003-04-251-2/+2
|
* There have been many reports of init failing to reboot and/or failing to haltEric Andersen2003-04-241-7/+21
| | | | | | | | | | | | | | | | | | | | | | | 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
* unlink a previous file before its extractedGlenn L McGrath2003-04-211-1/+2
|
* sync with waldiGlenn L McGrath2003-04-215-13/+47
|
* unlink() an existing file, before opening it, simply truncating canGlenn L McGrath2003-04-211-1/+2
| | | | cause nasty problems if overwriting glibc, spotted by waldi.
* Add link to SimplyGNUstepEric Andersen2003-04-211-0/+1
|
* Patch from David Updegraff to use calloc so that forward pointers start outEric Andersen2003-04-191-7/+29
| | | | | NULL, and so it can handle format strings that have stuff _after_ the last %? specification
* Patch from David Updegraff to avoid corrupting memory while parsing theEric Andersen2003-04-191-2/+5
| | | | | networks/iterfaces file with next_word routine. Without this, next_word increments one beyond the end of the string.
* Minor .o file naming changeEric Andersen2003-04-162-5/+5
|
* enable CONFIG_USE_BB_PWD_GRP for the debian installer,Eric Andersen2003-04-164-4/+4
| | | | | | to prevent glibc from trying and failing to use NSS junk that is not present. -Erik
* Fix logic error in grouped commandsGlenn L McGrath2003-04-121-42/+25
|
* Fix up indentingGlenn L McGrath2003-04-111-78/+59
|
* Really fix the 'r' commandGlenn L McGrath2003-04-091-4/+7
|
* Fix the sed 'r' commandGlenn L McGrath2003-04-091-3/+2
|
* fix substitution when replacing with &, we shouldnt check for an escape ↵Glenn L McGrath2003-04-091-2/+1
| | | | charcter. Its already been taken care of _somewhere_ else
* Label ends at a newline, update comments, rename linked list fieldGlenn L McGrath2003-04-091-36/+37
|
* Run through indentGlenn L McGrath2003-04-081-301/+360
|
* Fixes block commands to correctly identify end of block, recognise the #n ↵Glenn L McGrath2003-04-081-27/+63
| | | | directive, fix substitue command when regex isnt specified
* Add hold space commands 'g', 'h', 'x'Glenn L McGrath2003-04-071-5/+19
|
* Rename "line" to pattern_space to be more descriptive and closer to the ↵Glenn L McGrath2003-04-071-34/+32
| | | | POSIX description
* Sync with waldi's packageGlenn L McGrath2003-04-068-247/+1160
|