aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* put small subset of e2fsprogs back in the tree:Denis Vlasenko2006-12-26142-0/+42719
| | | | | lsattr, chattr, fsck. Old e2fsprogs tree is in e2fsprogs/old_e2fsprogs/*.
* remove e2fsprogs. Nobody volunteered to clean up that messDenis Vlasenko2006-12-26133-40208/+0
|
* Fix irregular capitalization in usage textsDenis Vlasenko2006-12-251-536/+535
|
* trim help texts a bit moreDenis Vlasenko2006-12-251-16/+16
|
* less: fix regexp search '/' on large filesDenis Vlasenko2006-12-251-47/+71
|
* more usage message cleanupsDenis Vlasenko2006-12-241-164/+152
|
* Cleanup usage messages (-200 bytes).Denis Vlasenko2006-12-243-370/+379
| | | | | Remove busybox_main from applet table since it is called via separate check
* random tiny size savingsDenis Vlasenko2006-12-245-60/+53
|
* small stupid changes. no code changesDenis Vlasenko2006-12-242-10/+3
|
* missing piece of prev commit: ndelay_offDenis Vlasenko2006-12-243-12/+6
|
* less: implement waiting for input using select(). Rather tricky business.Denis Vlasenko2006-12-242-455/+517
| | | | But we do not read entire input anymore up-front.
* sum: 40% size reduction (-300 bytes)Denis Vlasenko2006-12-232-117/+53
| | | | find: one_char -> LONE_CHAR
* su: fix typo: "argv -= optind" should be +=Denis Vlasenko2006-12-231-1/+1
|
* use xbind, xconnect where appropriate.Denis Vlasenko2006-12-234-84/+53
| | | | small edits to arping
* #define FEATURE_GETUSERNAME_AND_HOMEDIR should be always #definedDenis Vlasenko2006-12-231-3/+2
|
* fix recognitions of -SIGname signalsDenis Vlasenko2006-12-232-8/+10
| | | | (fix by Jacques LUDER <jacques.luder@thalesgroup.com>)
* find: fix spurious -exec error messagesDenis Vlasenko2006-12-232-4/+8
| | | | (bug reported by Bernhard Fischer <rep.nop@aon.at>)
* remove useless casts (type*) xzalloc(...)Denis Vlasenko2006-12-227-16/+13
|
* dpkg: getopt32-ification etc, -100 bytesDenis Vlasenko2006-12-221-223/+170
|
* tail: -50 text bytesDenis Vlasenko2006-12-221-88/+48
|
* rpm: reformat. was really hard to readDenis Vlasenko2006-12-221-121/+168
|
* convert "negaite" config option into reversed (INCLUDE_SUSv2)Denis Vlasenko2006-12-225-12/+12
|
* time: -200 bytes of textDenis Vlasenko2006-12-221-84/+96
|
* time: fix option parsing bug, size optimizationsDenis Vlasenko2006-12-221-28/+22
|
* 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
|