aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* eject: -T (implements single button open/close)Denis Vlasenko2006-10-022-9/+25
|
* mount: accept and ignore -s (sloppy) option.Denis Vlasenko2006-10-021-11/+11
| | | | needed for compatibility with Linux automounter.
* sed: -e options were handled in reverse order. fix that.Denis Vlasenko2006-10-011-19/+27
|
* sed: unbreak multiple -e, -f option handling (my fault)Denis Vlasenko2006-10-014-20/+29
|
* gzip: add a bit of comment. The code itselfDenis Vlasenko2006-10-011-4/+8
| | | | is too bloated to work on it...
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-0115-72/+122
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* wget: make progress bar and ETA work correctly with -cDenis Vlasenko2006-10-011-35/+37
|
* dpkg: fix use-after-free (bug 939)Denis Vlasenko2006-09-301-7/+4
|
* lsmod: repair indentationDenis Vlasenko2006-09-303-128/+124
| | | | httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
* vconfig: fix bug 701 (I be damned if I understand it)Denis Vlasenko2006-09-302-8/+9
|
* syslogd: do not retry udp sends (can stall syslogd for extended periodsDenis Vlasenko2006-09-301-41/+14
| | | | of time), resolve remote logging host before daemonization
* syslogd: getopt_ulflags'ification (save ~50 bytes)Denis Vlasenko2006-09-301-143/+156
|
* syslogd: add option to suppress logging of messages lower than level N (-n N)Denis Vlasenko2006-09-302-5/+18
|
* fbset: store short string in the structure itself instead of the pointerDenis Vlasenko2006-09-301-213/+203
| | | | (small size saving)
* fbset: add support for -a (bug 1017)Denis Vlasenko2006-09-301-6/+14
|
* no-op (just for svn commit run. 2.6.18 oopses on that, need to reproduce)Denis Vlasenko2006-09-301-1/+0
|
* libiproute/ll_map.c: fix bug 279Denis Vlasenko2006-09-301-6/+30
| | | | ("On-demand net module loading fails with CONFIG_FEATURE_IFUPDOWN_IP")
* wc: optionally support very large files in wcDenis Vlasenko2006-09-292-3/+15
|
* wc: reduce source cruft, make it so that "wc -c" (one option, no filenames)Denis Vlasenko2006-09-291-44/+31
| | | | will not print leading blanks.
* Mention the new gpl@busybox.net address.Rob Landley2006-09-292-1/+6
|
* losetup: use /dev/loopN or /dev/loop/N according to CONFIG_FEATURE_DEVFS=n/yDenis Vlasenko2006-09-292-2/+4
|
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-2917-33/+33
|
* grep: add help text; fix styleDenis Vlasenko2006-09-292-26/+27
|
* grep: implement -o option. Patch by Jac Goudsmit.Denis Vlasenko2006-09-291-22/+34
|
* top: add support for -b, -n <iterations>Denis Vlasenko2006-09-294-35/+34
|
* mount: fix bug 946 (mount -f should update mtab)Denis Vlasenko2006-09-291-6/+6
|
* getopt_ulflags: fix indentation in comment (needs to be 8 _spaces_Denis Vlasenko2006-09-291-183/+189
| | | | | in order to look correct to both 4 tab and 8 tab population). Add comment about :: (which indicates optional argument).
* getopt_ulflags: formatting fixesDenis Vlasenko2006-09-291-71/+71
|
* xargs: simplify option parsingDenis Vlasenko2006-09-292-116/+92
|
* rt_names.c: move few strings into rodataDenis Vlasenko2006-09-281-10/+9
|
* dpkg: style fixes; short -> int (generated code is smaller)Denis Vlasenko2006-09-281-54/+54
|
* dpkg: reduce bss usage by ~130 kbytes (yes, kilobytes!)Denis Vlasenko2006-09-282-77/+88
| | | | | | at the cost of ~100 bytes of text. Improves friendliness to nommu systems. (Dunno whether nommu people ever use dpkg, though...)
* ifupdown: make dhcp start/stop scripts user configurableDenis Vlasenko2006-09-281-0/+16
| | | | in /etc/network/interfaces. Patch author is Gabriel L. Somlo <somlo@cmu.edu>
* Tried to find sha1_crypt - nope... ok, save few bytes in md5_sha1_sum.cDenis Vlasenko2006-09-282-28/+25
| | | | (time to sleep, 02:28 in the morning)...
* usage.h: fix compile-time bugs exposed by previous changeDenis Vlasenko2006-09-272-11/+8
|
* usage.h: remove ugly tricks. We have USE_FEATURE_xxx now.Denis Vlasenko2006-09-275-279/+88
| | | | Few bugs are now exposed...
* silly switch style fixDenis Vlasenko2006-09-278-10/+10
|
* crontab: we indent using tabsDenis Vlasenko2006-09-271-272/+277
|
* losetup: with no arguments lists all /dev/loopN. Corrected help text.Denis Vlasenko2006-09-272-5/+18
| | | | (patch by Vladimir Dronnikov <dronnikov@gmail.ru>)
* kill: implement killall5. OpenWRT folks will be happy.Denis Vlasenko2006-09-274-32/+65
| | | | | However their code was unusably different from sysvinit original. Run tested.
* kill: fix bugs (kill -l output was horrible), fix style, constify dataDenis Vlasenko2006-09-273-64/+64
|
* process utilities related style cleanupDenis Vlasenko2006-09-272-26/+24
|
* ifupdown: fix for standalone shell; removed hardcoded PATHDenis Vlasenko2006-09-271-41/+23
|
* ifupdown: style cleanup, no code changesDenis Vlasenko2006-09-261-266/+260
|
* several fixes from openWRT projectDenis Vlasenko2006-09-268-5/+88
|
* login: fix getopt_ulflags fallout (wasn't taking username supplied by getty)Denis Vlasenko2006-09-261-3/+3
|
* httpd: sanitize indentationDenis Vlasenko2006-09-261-1213/+1209
|
* wget: add (configurable) large file support. Run tested.Denis Vlasenko2006-09-263-53/+99
|
* fix 'grep -C' which requires an argumentEric Andersen2006-09-251-1/+1
|
* vlock: make message shorterDenis Vlasenko2006-09-241-1/+1
|