aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-10-03getopt_ulflags -> getopt32.Denis Vlasenko
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
2006-10-03rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko
2006-10-03fdformat: remove redundant checkDenis Vlasenko
2006-10-03lots of silly indent fixesDenis Vlasenko
2006-10-03random style fixesDenis Vlasenko
2006-10-03traceroute: fix compilation if netinet/protocols.h is missingDenis Vlasenko
2006-10-03Yeah, yeah... I forgot about 'svn add'... fixing thatDenis Vlasenko
2006-10-03runit/chpst: "change process state" utilityDenis Vlasenko
It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k
2006-10-03traceroute: do not look up icmp protocol# in /etc, it is well-known :)Denis Vlasenko
2006-10-02ifupdown: Debian users contributed improvement to itDenis Vlasenko
2006-10-02eject: -T (implements single button open/close)Denis Vlasenko
2006-10-02mount: accept and ignore -s (sloppy) option.Denis Vlasenko
needed for compatibility with Linux automounter.
2006-10-01sed: -e options were handled in reverse order. fix that.Denis Vlasenko
2006-10-01sed: unbreak multiple -e, -f option handling (my fault)Denis Vlasenko
2006-10-01gzip: add a bit of comment. The code itselfDenis Vlasenko
is too bloated to work on it...
2006-10-01g[un]zip: add support for -v (verbose).Denis Vlasenko
Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
2006-10-01wget: make progress bar and ETA work correctly with -cDenis Vlasenko
2006-09-30dpkg: fix use-after-free (bug 939)Denis Vlasenko
2006-09-30lsmod: repair indentationDenis Vlasenko
httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
2006-09-30vconfig: fix bug 701 (I be damned if I understand it)Denis Vlasenko
2006-09-30syslogd: do not retry udp sends (can stall syslogd for extended periodsDenis Vlasenko
of time), resolve remote logging host before daemonization
2006-09-30syslogd: getopt_ulflags'ification (save ~50 bytes)Denis Vlasenko
2006-09-30syslogd: add option to suppress logging of messages lower than level N (-n N)Denis Vlasenko
2006-09-30fbset: store short string in the structure itself instead of the pointerDenis Vlasenko
(small size saving)
2006-09-30fbset: add support for -a (bug 1017)Denis Vlasenko
2006-09-30no-op (just for svn commit run. 2.6.18 oopses on that, need to reproduce)Denis Vlasenko
2006-09-30libiproute/ll_map.c: fix bug 279Denis Vlasenko
("On-demand net module loading fails with CONFIG_FEATURE_IFUPDOWN_IP")
2006-09-29wc: optionally support very large files in wcDenis Vlasenko
2006-09-29wc: reduce source cruft, make it so that "wc -c" (one option, no filenames)Denis Vlasenko
will not print leading blanks.
2006-09-29Mention the new gpl@busybox.net address.Rob Landley
2006-09-29losetup: use /dev/loopN or /dev/loop/N according to CONFIG_FEATURE_DEVFS=n/yDenis Vlasenko
2006-09-29Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko
2006-09-29grep: add help text; fix styleDenis Vlasenko
2006-09-29grep: implement -o option. Patch by Jac Goudsmit.Denis Vlasenko
2006-09-29top: add support for -b, -n <iterations>Denis Vlasenko
2006-09-29mount: fix bug 946 (mount -f should update mtab)Denis Vlasenko
2006-09-29getopt_ulflags: fix indentation in comment (needs to be 8 _spaces_Denis Vlasenko
in order to look correct to both 4 tab and 8 tab population). Add comment about :: (which indicates optional argument).
2006-09-29getopt_ulflags: formatting fixesDenis Vlasenko
2006-09-29xargs: simplify option parsingDenis Vlasenko
2006-09-28rt_names.c: move few strings into rodataDenis Vlasenko
2006-09-28dpkg: style fixes; short -> int (generated code is smaller)Denis Vlasenko
2006-09-28dpkg: reduce bss usage by ~130 kbytes (yes, kilobytes!)Denis Vlasenko
at the cost of ~100 bytes of text. Improves friendliness to nommu systems. (Dunno whether nommu people ever use dpkg, though...)
2006-09-28ifupdown: make dhcp start/stop scripts user configurableDenis Vlasenko
in /etc/network/interfaces. Patch author is Gabriel L. Somlo <somlo@cmu.edu>
2006-09-28Tried to find sha1_crypt - nope... ok, save few bytes in md5_sha1_sum.cDenis Vlasenko
(time to sleep, 02:28 in the morning)...
2006-09-27usage.h: fix compile-time bugs exposed by previous changeDenis Vlasenko
2006-09-27usage.h: remove ugly tricks. We have USE_FEATURE_xxx now.Denis Vlasenko
Few bugs are now exposed...
2006-09-27silly switch style fixDenis Vlasenko
2006-09-27crontab: we indent using tabsDenis Vlasenko
2006-09-27losetup: with no arguments lists all /dev/loopN. Corrected help text.Denis Vlasenko
(patch by Vladimir Dronnikov <dronnikov@gmail.ru>)
2006-09-27kill: implement killall5. OpenWRT folks will be happy.Denis Vlasenko
However their code was unusably different from sysvinit original. Run tested.