aboutsummaryrefslogtreecommitdiff
path: root/include/usage.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* ionice: new applet, adapted from Linux kernel' example by Walter HarmsDenis Vlasenko2009-01-311-1/+9
| | | | | | | text data bss dec hex filename 1050316 924 10952 1062192 103530 busybox_old 1050758 924 10952 1062634 1036ea busybox_unstripped
* tunctl: new applet by VladimirDenis Vlasenko2009-01-231-0/+17
| | | | | | | | | | | | | function old new delta tunctl_main - 371 +371 packed_usage 25669 25799 +130 applet_names 1981 1988 +7 applet_main 1192 1196 +4 applet_nameofs 596 598 +2 applet_install_loc 149 150 +1 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 5/0 up/down: 515/0) Total: 515 bytes
* s/an user/a user/Denis Vlasenko2008-12-251-2/+2
|
* Fold mkpasswd applet into cryptpw.Denis Vlasenko2008-12-041-23/+36
| | | | | | | | | | | | | | | | mkpasswd is in Debian, OTOH cryptpw was added to busybox earlier. Trying to make both camps happy by making those two applets just aliases. They are command-line compatible. We can decide whether we want to drop one (and which one) later. function old new delta cryptpw_main 183 314 +131 static.methods 21 - -21 packed_usage 25707 25648 -59 mkpasswd_main 307 - -307 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 1/1 up/down: 131/-387) Total: -256 bytes
* - remove superfluous comment from previous commitBernhard Reutner-Fischer2008-12-031-2/+1
|
* - add new applet mkpasswd(1)Bernhard Reutner-Fischer2008-12-031-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | function old new delta bb_ask - 355 +355 mkpasswd_main - 296 +296 .rodata 121746 121847 +101 packed_usage 24632 24689 +57 static.methods - 21 +21 gmatch 229 248 +19 bb_ask_stdin - 11 +11 applet_names 1949 1958 +9 applet_main 1172 1176 +4 sulogin_main 503 505 +2 applet_nameofs 586 588 +2 sha256_hash 329 327 -2 correct_password 208 206 -2 parse_command 1442 1439 -3 get_cred_or_die 145 141 -4 passwd_main 1054 1044 -10 bb_askpass 348 - -348 ------------------------------------------------------------------------------ (add/remove: 4/1 grow/shrink: 7/5 up/down: 877/-369) Total: 508 bytes
* mountpoint: add -n option (by Vladimir)Denis Vlasenko2008-11-291-2/+3
| | | | | | | text data bss dec hex filename 799859 560 7748 808167 c54e7 busybox_old 799845 560 7748 808153 c54d9 busybox_unstripped
* acpid: new applet by Vladimir. +737 bytesDenis Vlasenko2008-11-291-0/+17
|
* trim help text a bitDenis Vlasenko2008-11-241-1/+1
|
* timeout: new applet. 370 bytes. by Roberto Foglietta.Denis Vlasenko2008-11-241-0/+6
|
* insmod: clarify module_name / file_name distinctionDenis Vlasenko2008-11-221-1/+5
|
* inotifyd: exit if x event happened for all filesDenis Vlasenko2008-11-201-9/+7
| | | | | | | | | | | | | fix FIONREAD parameter type fix default mask code shrink help text function old new delta inotifyd_main 497 506 +9 packed_usage 25446 25431 -15 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 9/-15) Total: -6 bytes
* inotify: add x, o, and u eventsDenis Vlasenko2008-11-171-5/+9
|
* inotifyd: fix "inotifyd with no params" caseDenis Vlasenko2008-11-141-1/+1
|
* inotify: document waiting behaviorDenis Vlasenko2008-11-141-4/+5
|
* arp: stop using globalsDenis Vlasenko2008-11-131-6/+5
| | | | | | | | | | | | | | function old new delta hw_set 1 - -1 arp_main 1559 1558 -1 sockfd 8 4 -4 hw 4 - -4 device 4 - -4 ap 4 - -4 packed_usage 25402 25393 -9 ------------------------------------------------------------------------------ (add/remove: 0/4 grow/shrink: 0/3 up/down: 0/-27) Total: -27 bytes
* correct help textsDenis Vlasenko2008-11-121-10/+7
|
* - add support for seq -s <separator>Bernhard Reutner-Fischer2008-11-121-2/+3
|
* - add seq -w support (Natanael Copa)Bernhard Reutner-Fischer2008-11-121-1/+2
|
* libbb: add optionl support for SHA256/512 encrypted passwordsDenis Vlasenko2008-11-101-0/+5
| | | | | | | | | | | | | | | function old new delta sha_crypt - 2423 +2423 cryptpw_main 128 183 +55 to64 - 29 +29 pw_encrypt 974 1000 +26 str_rounds - 11 +11 login_main 1532 1541 +9 packed_usage 25215 25200 -15 __md5_to64 29 - -29 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 3/1 up/down: 2553/-44) Total: 2509 bytes
* sha256,sha512: new applets. +4.9kbDenis Vlasenko2008-11-101-14/+39
| | | | | | | we will require sha256/512 code for new $5$ and $6$ style password hashes anyway, they are showing up already in people's /etc/passwd...
* Typo fixesDenis Vlasenko2008-11-101-1/+1
|
* kbd_mode: support -C TTY optionDenis Vlasenko2008-11-081-6/+12
| | | | | | | function old new delta packed_usage 25334 25361 +27 kbd_mode_main 146 173 +27
* total overhaul of mail applets. again. Vladimir as usual.Denis Vlasenko2008-11-061-18/+56
|
* build system: tidying up CONFIG_xxx names (suggested by Rob)Denis Vlasenko2008-11-061-4/+4
|
* kill[all[5]]: accept -s SIG too. kill_main: +29 bytesDenis Vlasenko2008-10-311-5/+8
| | | | | by Steve Bennett (steveb AT workware.net.au)
* tftpd: be less cryptic in help textDenis Vlasenko2008-10-301-0/+6
|
* ls: trim help textDenis Vlasenko2008-10-271-21/+21
|
* devmem: new appletDenis Vlasenko2008-10-261-0/+9
|
* blkid: new applet. We almost had everything needed for it alreadyDenis Vlasenko2008-10-121-0/+5
| | | | | | | | | | | | | function old new delta display_uuid_cache - 89 +89 blkid_main - 8 +8 applet_names 1871 1877 +6 applet_main 1140 1144 +4 applet_nameofs 570 572 +2 packed_usage 24737 24735 -2 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 3/1 up/down: 109/-2) Total: 107 bytes
* zcip: code size optimizations, improved help text and commentsDenis Vlasenko2008-10-101-1/+4
| | | | | | | | | | | | function old new delta packed_usage 24750 24787 +37 run 658 655 -3 pick 40 34 -6 arp 186 177 -9 zcip_main 1402 1356 -46 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/4 up/down: 37/-64) Total: -27 bytes
* - route metric support (Natanael Copa)Bernhard Reutner-Fischer2008-10-071-1/+2
| | | | Adds about 75b
* sendmail: update by VladimirDenis Vlasenko2008-09-281-3/+5
|
* sendmail: compat update by VladimirDenis Vlasenko2008-09-271-4/+9
| | | | | | | | | | | | | function old new delta sendgetmail_main 1889 2091 +202 putchar_unlocked - 43 +43 putchar - 43 +43 packed_usage 24868 24910 +42 smtp_checkp 102 111 +9 uuencode 235 227 -8 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 3/1 up/down: 339/-8) Total: 331 bytes
* Markus Heidelberg writes:Bernhard Reutner-Fischer2008-09-261-4/+4
| | | | | * document --nicelevel in Config.in * usage: --verbose is the fancy option, not --quiet
* - add less -I to be able to search case-insensitivelyBernhard Reutner-Fischer2008-09-261-1/+2
| | | | | | | | | | | +17b, but the helptext is quite elaborate, thus: function old new delta .rodata 118995 119032 +37 packed_usage 24731 24767 +36 regex_process 284 300 +16 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/0 up/down: 89/0) Total: 89 bytes
* fix usage text - s/USE_GETOPT_LONG/USE_FEATURE_xxxLONG_OPTIONS/Denis Vlasenko2008-09-251-12/+12
| | | | | by Markus Heidelberg (markus.heidelberg AT web.de)
* top: don't lie in help screen about "-d 1" being validDenis Vlasenko2008-09-251-1/+1
|
* setfont: support -m and -C, support -m TEXTUAL_MAP (by Vladimir)Denis Vlasenko2008-09-161-2/+4
| | | | | | | | | | build system: fixlet for echo applet config function old new delta setfont_main 157 387 +230 ctoi - 75 +75 packed_usage 24921 24950 +29
* modutils/*: rewrite by Timo Teras <timo.teras AT iki.fi>Denis Vlasenko2008-09-131-0/+5
| | | | | | | | | | | | | | | - a lot faster (linear algorithmic complexity, smaller memory foot print) - a lot smaller (the old code was overly complicated) - loading of aliases is now module-init-tools compliant - blacklisting is done correctly (-b option added) - module argument quoting done right - depmod now correctly generates modules.symbols and modules.alias add/remove: 16/21 grow/shrink: 4/6 up/down: 6930/-9316 Total: -2386 bytes text data bss dec hex filename 806039 592 6680 813311 c68ff busybox_old 803498 592 6676 810766 c5f0e busybox_unstripped
* id: code shrinkDenis Vlasenko2008-09-131-2/+2
| | | | | | function old new delta id_main 494 462 -32
* - implement id -G (Tito Ragusa)Bernhard Reutner-Fischer2008-09-121-0/+1
|
* watchdog: add -T optionDenis Vlasenko2008-09-071-3/+4
| | | | | | | | function old new delta watchdog_main 159 219 +60 mdev: support match by major,minor. See bug 4714. +100 bytes.
* - add WIP stub for tc.Bernhard Reutner-Fischer2008-09-041-0/+20
| | | | Printing worked at some point. Modify/Delete needs some refacturing.
* - mention that we ignore -v, -b, -cBernhard Reutner-Fischer2008-09-041-1/+2
|
* kbd_mode: fix non-ASCII letters in commentsDenis Vlasenko2008-09-031-7/+8
| | | | | install: support -D
* - halt's -w depends on FEATURE_WTMP (Vladimir Dronnikov)Bernhard Reutner-Fischer2008-09-011-1/+1
|
* df: add support for more options, add some coreutils 6.10 compat.Denis Vlasenko2008-08-281-18/+22
| | | | | | | | | | | | | | | by Bernhard Reutner-Fischer function old new delta df_main 664 795 +131 packed_usage 24812 24862 +50 make_human_readable_str 213 262 +49 static.ignored_mounts - 8 +8 static.unit_chars - 7 +7 static.zero_and_units 6 - -6 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 3/0 up/down: 245/-6) Total: 239 bytes
* - document rmdir argsBernhard Reutner-Fischer2008-08-211-1/+10
|
* - document rmmod -w and -f argumentsBernhard Reutner-Fischer2008-08-211-1/+3
|