summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Always use /usr/share/udhcpc/default.script ([/usr] was depending on CONFIG_xx)Denis Vlasenko2006-12-221-5/+1
|
* removal of commented-out cruftDenis Vlasenko2006-12-225-21/+3
|
* tar et al: die if bb_copyfd_size copies less than asked for.Denis Vlasenko2006-12-2213-66/+85
| | | | (we have bb_copyfd_exact_size now for that kind of usage)
* cmdedit: reformat code a bit, no algorithm changesDenis Vlasenko2006-12-211-233/+230
|
* fix type character mixup in command completionDenis Vlasenko2006-12-211-35/+26
|
* less: a few fixes for cases where we overflow status lineDenis Vlasenko2006-12-211-59/+31
|
* less: restore TAB display (was showing as inverse I after prev changes :)Denis Vlasenko2006-12-211-29/+35
|
* less: "(null)" is a bit strange. "standard input" is better :)Denis Vlasenko2006-12-211-5/+14
|
* less: how many different kinds of status line we need, three?!Denis Vlasenko2006-12-211-43/+40
| | | | | small fixes. [prev commit also added control char filtering on input (e.g. regexp input, filename input for 'E' etc)]
* less: stop dying on bad regexps, quietly pipe data w/oDenis Vlasenko2006-12-214-117/+161
| | | | | user interaction if stdout is not a tty. size optimizations
* introduce LONE_CHAR (optimized strcmp with one-char string)Denis Vlasenko2006-12-2117-35/+49
|
* tail: fix tail +NDenis Vlasenko2006-12-211-11/+9
|
* less: total cleanup and bugfix.Denis Vlasenko2006-12-212-253/+238
| | | | | | | | | | | | | | Doesn't die horribly on binary files anymore. In fact, they _100%_ work now. Control chars are in reverse video, including DEL and that idiocy of VT-10x, Meta-ESC [inventor of which should be prohibited from reproducing]. Regex search is fixed also. When you specify search ('/' key), control chars turn into dots (unhighlighted), and found occurrences highlighted instead. This is reversible. Memory management fixed (was leaky as hell) and optimized. Linewrapping fixed and thoroughly tested. Max buffer size made configurable. ~ 600 bytes saved.
* less: somewhat buggy applet, but nice. Muchly reducedDenis Vlasenko2006-12-203-214/+208
| | | | | | | | xstrdup'ing and memory consumption. Made linewrap saner. regex matching code was awful - still buggy, but not as leaky as before. Made buffer size configurable. Killed several static and on-stack buffers. Hopefully eliminated staircase effect on Ctrl-C (unable to reproduce).
* remove casts from xmalloc()Denis Vlasenko2006-12-1915-27/+25
|
* ifupdown: do not print and/or execute empty commands ("").Denis Vlasenko2006-12-191-9/+7
|
* ifupdown: parse() returning NULL and returning "" is not the same,Denis Vlasenko2006-12-192-12/+16
| | | | it turned out! wow... okay, fixing my buglet...
* u_short, ulong exterminatedDenis Vlasenko2006-12-1911-95/+90
| | | | fdiskXXX: add a bit of sanity (not enough by far)
* cmdedit: fix my bug, improve code a bitDenis Vlasenko2006-12-191-31/+20
|
* - use xlisten/xsocket some more. Saves .25 kBBernhard Reutner-Fischer2006-12-196-35/+9
|
* - rename SU_SYSLOG to FEATURE_SU_SYSLOGBernhard Reutner-Fischer2006-12-193-9/+10
|
* cmdedit: use qsort for sorting command completion results; style fixesDenis Vlasenko2006-12-191-132/+104
|
* passwd: add option to check passwords for weaknessDenis Vlasenko2006-12-192-1/+9
|
* Add option to disable command execution from vi & awkDenis Vlasenko2006-12-193-4/+16
|
* su: make /etc/shells check configurableDenis Vlasenko2006-12-194-30/+29
| | | | ash: missing ';'
* mount: add getmntent_r stub for dietlibcDenis Vlasenko2006-12-181-1/+16
|
* xfuncs.c: dietlibc actually HAS fdprintf!Denis Vlasenko2006-12-183-13/+24
| | | | | platform.h: define strchrnul for dietlibc ash: stop using few non-standard functions
* nc: add missing castDenis Vlasenko2006-12-183-1/+35
| | | | xfuncs: add dprintf for dietlibc
* A bunch of defined(__GLIBC__) added. static-linking warning expandedDenis Vlasenko2006-12-1813-24/+14
|
* du: dietlibc compat fix, style fixes. Thanks to sampo@symlabs.com.Denis Vlasenko2006-12-181-35/+31
|
* ifupdown: strlen(NULL) is a no-no, fixed. Also few micro-optimizationsDenis Vlasenko2006-12-181-80/+76
|
* ps: fix buglet, add microoptimizationDenis Vlasenko2006-12-181-6/+4
|
* httpd: we don't have FEATURE_HTTPD_WITHOUT_INETD anymore,Denis Vlasenko2006-12-171-3/+3
| | | | remove it from Config.in
* start_stop_daemon: make code a bit more readableDenis Vlasenko2006-12-171-23/+19
|
* od: remove bug-for-bug compat (because the bug was fixed in coreuitls)Denis Vlasenko2006-12-171-2/+1
|
* tar: report error if child dies while writing out the end of tarballDenis Vlasenko2006-12-171-8/+39
| | | | (e.g. out of disk space).
* start_stop_daemon: fix bug where any program name was "matching"Denis Vlasenko2006-12-172-30/+40
| | | | processes for which readlink(/proc/N/exe) fails
* fix/shorten some usage stringsDenis Vlasenko2006-12-171-349/+412
|
* tftp: corrupted input packets were killing retransmits - fixedDenis Vlasenko2006-12-171-18/+22
|
* diff: comment - explain what happens when hunk fails to applyDenis Vlasenko2006-12-171-2/+3
|
* patch: fix double-free (bug 1120)Denis Vlasenko2006-12-171-0/+1
|
* inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid]Denis Vlasenko2006-12-1628-63/+69
|
* s/extern inline/static ATTRIBUTE_ALWAYS_INLINE/gDenis Vlasenko2006-12-168-42/+41
| | | | xstrtou: disallow leading '+'
* wget: smallish optimizationDenis Vlasenko2006-12-161-18/+18
|
* diff: fix -q exit codeDenis Vlasenko2006-12-162-76/+78
| | | | last_char_is: sacrifice 9 bytes but avoid double-scan
* site: add link to directory with patchesDenis Vlasenko2006-12-151-1/+2
|
* re-applying first post-1.3.x changeDenis Vlasenko2006-12-152-2/+14
| | | | version change to 1.4.0.svn
* back out last change - need to make busybox-1_3-stable branch firstDenis Vlasenko2006-12-151-12/+0
|
* - table support for ip routeBernhard Reutner-Fischer2006-12-141-0/+12
|
* - minor shrinkageBernhard Reutner-Fischer2006-12-141-4/+6
|