aboutsummaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* microcom: tiny shrink, adding commentsDenis Vlasenko2008-02-191-7/+8
|
* fix chat CONFIG_xxx dependenciesDenis Vlasenko2008-02-191-1/+7
|
* chat: now with "svn add"Denis Vlasenko2008-02-191-0/+443
|
* chat: new applet by dronnikov AT gmail.com. With all options on:Denis Vlasenko2008-02-182-0/+61
| | | | | | | | | | | | | | | | function old new delta chat_main - 1230 +1230 unescape - 135 +135 packed_usage 23802 23922 +120 signal_handler 123 131 +8 input_backward 123 128 +5 applet_names 1775 1780 +5 applet_main 1076 1080 +4 applet_nameofs 538 540 +2 exitcode - 1 +1 ------------------------------------------------------------------------------ (add/remove: 3/0 grow/shrink: 6/0 up/down: 1510/0) Total: 1510 bytes
* - fix open(creat) without a modeBernhard Reutner-Fischer2008-02-181-1/+1
|
* mount: recognize "dirsync" (closes bug 835)Denis Vlasenko2008-02-181-8/+3
| | | | | | mount: sanitize environ if called by non-root *: adjust for slightly different sanitize routine
* whitespace fixesDenis Vlasenko2008-02-171-1/+1
|
* crontab: stop using remove() - use unlink() insteadDenis Vlasenko2008-02-171-16/+9
|
* libbb: introduce and use xrename and rename_or_warn.Denis Vlasenko2008-02-171-5/+5
|
* microcom: maintainer updateDenis Vlasenko2008-02-161-39/+30
|
* libbb: introduce bb_signals and bb_signals_recursive,Denis Vlasenko2008-02-164-15/+23
| | | | | | | | | | | | | | | | | | | | | | | | which sets same handler for many signals. sig_catch is nuked (bb_signals_recursive is more descriptive name). *: use them as appropriate. function old new delta bb_signals_recursive - 95 +95 bb_signals - 52 +52 run_command 258 273 +15 svlogd_main 1368 1377 +9 runsv_main 1746 1752 +6 runsvdir_main 1643 1646 +3 UNSPEC_print 64 66 +2 time_main 1128 1127 -1 ... resize_main 246 210 -36 sig_catch 63 - -63 set_fatal_sighandler 85 14 -71 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 5/24 up/down: 182/-548) Total: -366 bytes
* crontab: clear env if run by non-root, so that we can use PATH nowDenis Vlasenko2008-02-161-10/+8
| | | | | crontab: make "-c /tmp/ -e" work
* *: more readable handling of pipe fds. No code changes.Denis Vlasenko2008-02-161-6/+6
|
* random s/short/int/Denis Vlasenko2008-02-161-1/+1
| | | | | | | | | add_cmd 1189 1190 +1 xconnect_ftpdata 118 117 -1 data_align 86 84 -2 process_files 2101 2096 -5 forkexec 1345 1334 -11
* crontab: almost complete rewriteDenis Vlasenko2008-02-161-283/+187
| | | | | | | | | | | | | | | | | | | crontab: make options consistent with other implementations text data bss dec hex filename 2042 4 0 2046 7fe busybox.t1/miscutils/crontab.o 1331 0 0 1331 533 busybox.t2/miscutils/crontab.o function old new delta edit_file 733 956 +223 open_as_user - 171 +171 packed_usage 23652 23650 -2 CDir 8 4 -4 ChangeUser 139 - -139 crontab_main 1522 616 -906 ------------------------------------------------------------------------------ (add/remove: 1/1 grow/shrink: 1/3 up/down: 394/-1051) Total: -657 bytes
* microcom: read more than 1 byte from device, if possibleDenis Vlasenko2008-02-101-14/+16
|
* microcom: compile fixesDenis Vlasenko2008-02-091-2/+3
|
* microcom: split -d (delay) option away from -tDenis Vlasenko2008-02-091-18/+20
|
* microcom: update from maintainerDenis Vlasenko2008-02-081-82/+71
|
* - add eject -s for SCSI- and USB-devices (Nico Erfurth)Bernhard Reutner-Fischer2008-02-082-17/+78
|
* microcom: undo #define trick, gcc fails to take advantage of itDenis Vlasenko2008-01-281-3/+3
|
* mkswap, readahead: stop using fdlength, it is reported to be unreliableDenis Vlasenko2008-01-271-2/+9
|
* microcom: update from the authorDenis Vlasenko2008-01-271-73/+133
|
* - fix conflicting decls of syslog related facilitynames and prioritynames tablesBernhard Reutner-Fischer2008-01-272-9/+4
|
* crond: small code shrink and readability enhancementsDenis Vlasenko2008-01-241-15/+15
|
* - Fix hdparm's ioctl parameter passing (John Brandwood)Bernhard Reutner-Fischer2008-01-191-6/+6
|
* ps: fix build breakage from vda's recent commitDenis Vlasenko2008-01-071-4/+4
| | | | | *: whitespace fixes
* libbb: introduce and use safe_waitpid (loops in EINTR)Denis Vlasenko2008-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | *: use more approproate (shorter) versions of wait() function old new delta safe_waitpid - 48 +48 wait_any_nohang - 17 +17 send_tree 365 369 +4 processorstop 432 435 +3 text_yank 110 108 -2 make_human_readable_str 202 200 -2 crond_main 1368 1366 -2 handle_sigchld 49 43 -6 reapchild 166 159 -7 custom 260 250 -10 checkscript 191 177 -14 wait_nohang 17 - -17 wait_pid 43 - -43 ------------------------------------------------------------------------------ (add/remove: 2/2 grow/shrink: 2/7 up/down: 72/-103) Total: -31 bytes
* fbset: fix buglet where we were using wrong pointerDenis Vlasenko2007-11-063-20/+30
| | | | | | readahead: stop using stdio.h *: style fixes
* ifconfig: code shrinkDenis Vlasenko2007-11-042-56/+69
| | | | | | | | | | | adjtimex: code shrink libbb: move nth_string function into libbb hdparm: nth_string was here text data bss dec hex filename 730013 10334 12032 752379 b7afb busybox_old 730093 10134 12032 752259 b7a83 busybox_unstripped
* hdparm: code shrinkDenis Vlasenko2007-10-301-229/+214
| | | | | | | text data bss dec hex filename 776494 974 9420 786888 c01c8 busybox_old 776099 974 9420 786493 c003d busybox_unstripped
* mt: eliminate vector of structures with pointers (bad for libbusybox).Denis Vlasenko2007-10-111-56/+79
| | | | | | | | | | | | | | | | It's a win for static build too: function old new delta opcode_name - 213 +213 opcode_value - 68 +68 mt_main 281 256 -25 opcodes 280 - -280 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 0/1 up/down: 281/-305) Total: -24 bytes text data bss dec hex filename 767403 974 9420 777797 bde45 busybox_old 767224 974 9420 777618 bdd92 busybox_unstripped
* add -fvisibility=hidden to CC flags, mark XXX_main functionsDenis Vlasenko2007-10-1125-28/+28
| | | | | EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so
* printf("%s\n") -> puts()Denis Vlasenko2007-10-011-1/+1
|
* 'simple' error message functions by Loic Grenie <loic.grenie@gmail.com>.Denis Vlasenko2007-10-014-4/+4
| | | | | 263 bytes saved.
* introduce and use close_on_exec_on(fd). -50 bytes.Denis Vlasenko2007-09-301-4/+1
|
* small code shrinkDenis Vlasenko2007-09-291-2/+1
|
* hdparm: paranoia-induced fix against theoretical div-by-0 caseDenis Vlasenko2007-09-281-2/+2
|
* hdparm: more robust (re overflows) code. +38 bytes.Denis Vlasenko2007-09-281-25/+23
|
* hdparm: reduce possibility of numeric overflow in -T.Denis Vlasenko2007-09-281-6/+14
| | | | | | | do_time 386 410 +24 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/0 up/down: 24/0) Total: 24 bytes
* hdparm: simplify timing measurement (it wa the last last userDenis Vlasenko2007-09-281-64/+62
| | | | | | | | | | | | | | | of setitimer in the tree). static.thousand 16 - -16 read_big_block 81 46 -35 getitimer 41 - -41 setitimer 47 - -47 __GI_setitimer 47 - -47 do_time 480 386 -94 ------------------------------------------------------------------------------ (add/remove: 0/4 grow/shrink: 0/2 up/down: 0/-280) Total: -280 bytes M miscutils/hdparm.c
* hdparm: get rid of static variablesDenis Vlasenko2007-09-281-97/+179
| | | | | | | | | | | | | process_dev 5309 5311 +2 unregister_hwif 1 - -1 ........... Xreadahead 4 - -4 seek_to_zero 25 17 -8 hdparm_main 1242 1227 -15 do_time 547 480 -67 ------------------------------------------------------------------------------ (add/remove: 0/83 grow/shrink: 1/3 up/down: 2/-248) Total: -246 bytes
* less: make 'f' page forwardDenis Vlasenko2007-09-271-1/+1
|
* hdparm: use fixed fd #3 for device being interrogatedDenis Vlasenko2007-09-271-26/+30
| | | | | (surprisingly, on i386 almost no code size change)
* introduce bb_putchar(). saves ~1800 on uclibc (less on glibc).Denis Vlasenko2007-09-276-83/+71
|
* style and message text fixesDenis Vlasenko2007-09-271-1/+1
|
* introduce safe_poll (fixes a problem in top)Denis Vlasenko2007-09-271-2/+1
| | | | | | | | | | | | | | | | | | | | function old new delta safe_poll - 77 +77 svlogd_main 1470 1466 -4 zcip_main 1530 1524 -6 forkexec 1345 1338 -7 decode_format_string 795 788 -7 collect_blk 474 467 -7 buffer_pread 540 532 -8 tftp 1182 1172 -10 microcom_main 763 749 -14 arpping 441 424 -17 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/9 up/down: 77/-80) Total: -3 bytes text data bss dec hex filename 770162 1034 10404 781600 bed20 busybox_old 770158 1034 10404 781596 bed1c busybox_unstripped
* include libbb.h, not busybox.hDenis Vlasenko2007-09-221-1/+1
|
* - actually mv microcom.c to miscutilsBernhard Reutner-Fischer2007-09-221-0/+138
|
* move microcom to miscutilsDenis Vlasenko2007-09-222-0/+7
|