summaryrefslogtreecommitdiff
path: root/include/usage.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* netstat: introduce -W: wide, ipv6-friendly outputDenis Vlasenko2007-05-151-12/+14
| | | | | | | netstat: shrink by ~500 bytes (patch by Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>) netstat: fix for bogus state value for raw sockets
* cryptpw: new applet (a bit less than 3k added)Denis Vlasenko2007-05-081-0/+7
| | | | | (by Thomas Lundquist <lists@zelow.no>)
* deluser: add optional support for removing users from groupsDenis Vlasenko2007-04-151-2/+3
| | | | (by Tito <farmatito@tiscali.it>)
* find: add support for -delete, -path (by Natanael Copa)Denis Vlasenko2007-04-131-0/+4
|
* - forgot this hunk that corrects the usage text of ipBernhard Reutner-Fischer2007-04-101-3/+15
|
* find: improve usage text (Natanael Copa <natanael.copa@gmail.com>)Denis Vlasenko2007-04-051-1/+7
|
* nc: port nc 1.10 to busyboxDenis Vlasenko2007-04-051-0/+31
|
* - clean up addgroup, fix adding users to existing groups and make it ↵Bernhard Reutner-Fischer2007-04-051-2/+2
| | | | optional (Tito)
* - add -s|--spider which only checks if the file exists but does not download ↵Bernhard Reutner-Fischer2007-04-051-3/+4
| | | | | | it's content. Closes #1291
* find: un-DESKTOPize (Kai Schwenzfeier <niteblade@gmx.net>)Denis Vlasenko2007-04-041-1/+3
| | | | | find: -group, -depth (Natanael Copa <natanael.copa@gmail.com>) find: make constant array static, declare PARM_xx constants with enum
* Add/improve comment, shorten some usage texts. No code changes.Denis Vlasenko2007-04-041-38/+36
|
* ipsvd: make udpsvd work similar to tcpsvd (multiple parallelDenis Vlasenko2007-04-031-5/+7
| | | | | children for several streams of udp packets tested to work) code size: -509 bytes
* udpsvd: more work on it. works in limited testing.Denis Vlasenko2007-04-031-9/+18
|
* udpsvd: next part of ipsvd applets (not working yet)Denis Vlasenko2007-04-011-0/+5
|
* Copyright, help text, whitespace cleanupsDenis Vlasenko2007-04-011-2/+20
|
* tcpsvd: new appletDenis Vlasenko2007-04-011-0/+5
| | | | | | | | | | It's a GPL-ed 'clone' of Dan Bernstein's tcpserver. Author: Gerrit Pape <pape@smarden.org> http://smarden.sunsite.dk/ipsvd/ size tcpsvd.o text data bss dec hex filename 2571 4 16 2591 a1f tcpsvd.o
* - rewrite run-partsBernhard Reutner-Fischer2007-03-281-2/+17
| | | | | | | | | | | | | | | | | | | text data bss dec hex filename 1029 0 0 1029 405 debianutils/run_parts.o-old 478 0 0 478 1de debianutils/run_parts.o-new-bare 600 0 0 600 258 debianutils/run_parts.o-new-full bare, i.e. without long opts and fancy stuff ./scripts/bloat-o-meter bb_old busybox_unstripped function old new delta act - 215 +215 run_parts_main 216 201 -15 valid_name 50 - -50 runparts_long_options 64 - -64 .rodata 124323 124163 -160 run_parts 513 - -513 ------------------------------------------------------------------------------ (add/remove: 1/3 grow/shrink: 0/2 up/down: 215/-802) Total: -587 bytes
* - add usage for splitBernhard Reutner-Fischer2007-03-261-1/+6
|
* - rough prototype for split(1). TODO: Still needs some love since it's way ↵Bernhard Reutner-Fischer2007-03-251-0/+6
| | | | | | | too big.. text data bss dec hex filename 602 4 0 606 25e coreutils/split.o
* SELinux: load_policy appletDenis Vlasenko2007-03-241-0/+4
|
* dnsd: fix several buglets, make smallerDenis Vlasenko2007-03-241-1/+1
|
* 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
|