summaryrefslogtreecommitdiff
path: root/include/usage.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cmp: support 3rd and 4th arguments if DESKTOP=y (needed for gcc build)Denis Vlasenko2007-03-211-1/+1
|
* random fixes to help textDenis Vlasenko2007-03-171-56/+61
|
* - change option -c to -Z to match newer upstream SElinux conventionsBernhard Reutner-Fischer2007-03-141-1/+1
|
* selinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> (HitachiSoft)Denis Vlasenko2007-03-101-6/+64
|
* - add chrt applet.Bernhard Reutner-Fischer2007-03-091-0/+16
| | | | | | text data bss dec hex filename 769 0 0 769 301 miscutils/chrt.o and could use some further shrinkage
* hwclock: support /dev/rtc0 etcDenis Vlasenko2007-03-071-3/+6
|
* fix umount usage messageDenis Vlasenko2007-03-071-1/+2
|
* clean up accumulated whitespace damageDenis Vlasenko2007-03-071-3/+3
|
* start_stop_daemon: add -chuid supportDenis Vlasenko2007-02-261-1/+1
|
* grep: "implement" -a and -I by ignoring themDenis Vlasenko2007-02-251-22/+24
|
* syslogd: MARK code is buggy. Disabling it altogether on anti-bloat groundsDenis Vlasenko2007-02-141-1/+1
|
* ping: support -I addr in family neutral manner; reuse a bit of common codeDenis Vlasenko2007-02-091-9/+11
|
* new applets: selinux utils by KaiGai Kohei <kaigai@kaigai.gr.jp>Denis Vlasenko2007-02-061-10/+34
|
* - document the multicast argument for ip linkBernhard Reutner-Fischer2007-01-281-1/+1
|
* Unify ping and ping6. ping has -4 and -6 which forceDenis Vlasenko2007-01-241-16/+12
| | | | | | | | name resolution into IP or IPv6 only, otherwise we take address family returned by host2sockaddr() in lsa->sa.sa_family. IOW: "ping ::1" with do IPv6 ping, "ping 127.0.0.1" will do IPv4 ping. ping6 is aliased to "ping -6".
* - make tty's pre SUSv3 option handling dependant on INCLUDE_SUSv2Bernhard Reutner-Fischer2007-01-201-1/+2
|
* By popular request reinstate fakeidentd's standalone mode.Denis Vlasenko2007-01-141-14/+8
| | | | | | | | | | | Since this is also needed for other applets like telnetd, introduce generic driver for such things. It even supports inetd-wait ('linger') mode, when inetd hands out listen socket to child and waits to it to die, instead of handing out accepted socket and continuing listening itself (nowait mode). Code growth ~200 bytes. NB: our inetd doesn't support wait mode yet (or mabe it is buggy).
* next part of ipv6-ization. mostly netcat.Denis Vlasenko2007-01-121-1/+1
|
* fakeinetd: attempted ipv6-ization (and it's done)Denis Vlasenko2007-01-111-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | but entire applet can be orders of magnitude smaller if written as an inetd service. So did that (#ifdef'ed out entire old version). inetd version is less than 10% of old one! function old new delta packed_usage 22083 22105 +22 nobodystr 4 - -4 bind_ip_address 4 - -4 ident_substr 20 - -20 chmatch 22 - -22 movefd 25 - -25 skipchars 49 - -49 handlexitsigs 51 - -51 replyError 70 - -70 .rodata 158120 158024 -96 deleteConn 102 - -102 G 524 388 -136 conns 560 - -560 fakeidentd_main 1457 143 -1314 ------------------------------------------------------------------------------ (add/remove: 0/10 grow/shrink: 1/3 up/down: 22/-2453) Total: -2431 bytes
* Fix typo in usage text by shortening itDenis Vlasenko2007-01-091-3/+3
|
* - a few minor tweaksBernhard Reutner-Fischer2007-01-071-5/+5
|
* add arp applet - thanks toDenis Vlasenko2007-01-071-0/+20
| | | | "Eric Spakman" <E.Spakman@inter.nl.net>
* syslogd: start using bb_common_bufsiz1 instead of stack/mallocDenis Vlasenko2007-01-041-9/+9
| | | | | logger: optimize, also use bb_common_bufsiz1 (~40 bytes) tested to eat arbitrarily-sized input at high speed - ok
* new libbb func: xmalloc_realpath (+ use it where makes sense)Denis Vlasenko2007-01-041-1/+2
| | | | | syslogd, logread: add debugging code (disabled) syslogs: drastically smaller bss; fix "-C n" behaviour
* chattr: bugfixes and size reductionDenis Vlasenko2006-12-261-1/+1
|
* leftover of e2fsck surgeryDenis Vlasenko2006-12-261-4/+4
|
* Fix irregular capitalization in usage textsDenis Vlasenko2006-12-251-536/+535
|
* trim help texts a bit moreDenis Vlasenko2006-12-251-16/+16
|
* more usage message cleanupsDenis Vlasenko2006-12-241-164/+152
|
* Cleanup usage messages (-200 bytes).Denis Vlasenko2006-12-241-367/+378
| | | | | Remove busybox_main from applet table since it is called via separate check
* fix/shorten some usage stringsDenis Vlasenko2006-12-171-349/+412
|
* build system: add "release" targetDenis Vlasenko2006-12-121-13/+22
| | | | find: support -size N (needed for above)
* - s/:\t\t/\t/ for two helptexts.Bernhard Reutner-Fischer2006-12-071-5/+5
|
* usage: fix few help texts, fix breakage: '\<tab>'Denis Vlasenko2006-11-281-50/+51
| | | | sequence utterly confused cpp :)
* fix udhcpc help message, take steps to make usage.h less messyDenis Vlasenko2006-11-281-2241/+2240
|
* udhcpc: convert to getopt32Denis Vlasenko2006-11-271-0/+9
|
* tar: sanitize option handlingDenis Vlasenko2006-11-241-1/+1
|
* - revert r15563 (pull current version of taskset off the busybox_scratch branch)Bernhard Reutner-Fischer2006-11-221-0/+17
|
* telnetd: we were having telnetd with is ONLY inetd or ONLY standalone.Denis Vlasenko2006-11-221-8/+10
| | | | | What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd.
* - add 'ip rule' support. First take..Bernhard Reutner-Fischer2006-11-211-3/+14
| | | | | text data bss dec hex filename 2999 0 0 2999 bb7 networking/libiproute/iprule.o
* dhcprelay: new appletDenis Vlasenko2006-11-201-0/+10
|
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-181-10/+10
|
* nc: fix --help textDenis Vlasenko2006-11-181-6/+2
|
* runit: add runsv, runsvdir and sv. Oh yes.Denis Vlasenko2006-11-171-0/+16
| | | | It even seems to work. +11K. :(
* httpd: reduce ifdef forest. comment out redundant PATH settingDenis Vlasenko2006-11-161-1/+1
|
* httpd: add -i (inetd) and -f (foreground) otions.Denis Vlasenko2006-11-161-2/+5
| | | | | -i makes possible to run httpd in both inetd and standalone mode without recompile (or need to have two different binaries)
* svlogd: new applet. +9k. Still too big, but it was 12k yesterday.Denis Vlasenko2006-11-161-0/+7
|
* usage.h: stop using ancient USAGE_xxx (we have USE_xx now)Denis Vlasenko2006-11-051-34/+13
|
* ps: implement POSIX-like options, most notably -oDenis Vlasenko2006-11-051-0/+15
| | | | (activated by CONFIG_DESKTOP)
* chgrp: just call chown! :)Denis Vlasenko2006-10-271-2/+8
|