aboutsummaryrefslogtreecommitdiff
path: root/scripts/config/expr.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-06-12Fix the location for the default config so 'make defconfig'Eric Andersen1-1/+1
actually works
2003-06-12Handle hard links by converting them to symlinksGlenn L McGrath1-1/+5
2003-06-10Vodz, last_patch_88Glenn L McGrath22-365/+211
2003-06-08sha1sum option to compare checksumsGlenn L McGrath2-46/+123
2003-06-07Better error handlingGlenn L McGrath1-9/+16
2003-06-07Minor correctionGlenn L McGrath1-1/+1
2003-06-07Fix bug (wrong value computed) when reading file from stdin, implementGlenn L McGrath1-39/+41
-s option
2003-06-07Run through indentGlenn L McGrath1-780/+808
2003-06-05Patch from Lars Kellogg-Stedman, lars at larsshack.org, toEric Andersen1-6/+12
make ifupdown's mapping function work as documented.
2003-05-27Put this back the way it was. I misunderstood what vodz was doing.Eric Andersen1-23/+17
2003-05-26Make all syscall declarations use the syscall() functionEric Andersen3-63/+77
2003-05-26This was doing some silly stuff that is not necessary when usingEric Andersen1-17/+23
vfork(), so I have simplified it.
2003-05-26cleanup a bit to remove needless verify() functionEric Andersen1-39/+36
2003-05-26Skip printing "/proc/%d/cmdline" stuff when it is not relevantEric Andersen1-1/+1
2003-05-26Remove cruftEric Andersen1-2/+0
2003-05-26Vodz, last_path_87, formatiing changesGlenn L McGrath1-275/+306
2003-05-26Vodz, last_patch_86Glenn L McGrath17-115/+121
2003-05-24Update mkdep, per the "touchless dependencies for 2.4.x" patchEric Andersen1-14/+14
from Geert Uytterhoeven posted to the lkml. -Erik
2003-05-23oopsEric Andersen1-1/+2
2003-05-23This patch from Vitezslav Batrla, is a cleaner fix for theEric Andersen1-15/+5
problem with syslogd logging the '<' char.
2003-05-22Patch from Russell Coker:Eric Andersen1-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.
2003-05-19Patch from Glenn EngelGlenn L McGrath1-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.
2003-05-18Handle -O preceding -x.Matt Kraai2-1/+6
2003-05-16Apply patch from Georg Magschok to fix syslog behavior so that theEric Andersen1-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...
2003-05-14Part of a patch from Glenn Engel, updates httpd helpGlenn L McGrath1-31/+43
2003-05-14vodz, last_patch_85Glenn L McGrath1-39/+38
2003-05-13Re-use existing variables, patch from TitoGlenn L McGrath1-7/+5
2003-05-13last_patch84 by Vodz.Glenn L McGrath1-327/+284
2003-05-13Add some missing lines for getty, patch by Steven ScholzGlenn L McGrath1-0/+2
2003-05-13Fix \l so it doesnt print the character as well as the tty, from oldGlenn L McGrath1-1/+2
patch by Nick Fedchik
2003-05-11minit, a Minimal init system.Glenn L McGrath7-0/+1051
2003-05-08Use xopen instead of xfopenGlenn L McGrath1-5/+4
2003-05-02Patch from Dmitry V. Levin to fix a fd leakEric Andersen1-0/+1
2003-04-27A couple of patches from Tito <farmatito@tiscali.it>Eric Andersen2-18/+21
2003-04-27Use bb_xgetlargGlenn L McGrath1-9/+1
2003-04-27New applet, foldGlenn L McGrath5-0/+222
2003-04-27Config option to create an fgrep aliasGlenn L McGrath2-0/+12
2003-04-27Fix segfault when cleaning upGlenn L McGrath1-1/+1
2003-04-27grep -f support, adds only 60 Bytes, but regex's now compiled asGlenn L McGrath1-27/+48
required, rather than being pre-compiled.
2003-04-26Always preserve dateGlenn L McGrath1-2/+1
2003-04-26New commands, 'G' and 'H'Glenn L McGrath1-1/+21
2003-04-26Add the -d option, its used by old versions of config.guess, change toGlenn L McGrath1-3/+26
use getopt.
2003-04-26iPatch from waldi, fixes usage of ip route flush (from)? (match|exact)Glenn L McGrath1-0/+14
2003-04-25Patch from Steven Scholz to fix telnetd compile problemEric Andersen1-2/+2
2003-04-24There have been many reports of init failing to reboot and/or failing to haltEric Andersen1-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
2003-04-21unlink a previous file before its extractedGlenn L McGrath1-1/+2
2003-04-21sync with waldiGlenn L McGrath5-13/+47
2003-04-21unlink() an existing file, before opening it, simply truncating canGlenn L McGrath1-1/+2
cause nasty problems if overwriting glibc, spotted by waldi.
2003-04-21Add link to SimplyGNUstepEric Andersen1-0/+1
2003-04-19Patch from David Updegraff to use calloc so that forward pointers start outEric Andersen1-7/+29
NULL, and so it can handle format strings that have stuff _after_ the last %? specification