aboutsummaryrefslogtreecommitdiff
path: root/coreutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - use standard-imposed constants some moreBernhard Reutner-Fischer2007-11-164-5/+5
|
* - remove most of the forward declarations. No obj-code changes.Bernhard Reutner-Fischer2007-11-161-244/+241
|
* - add note about SUSv3 missing options.Bernhard Reutner-Fischer2007-11-161-1/+2
|
* who: add -a (by Tito)Denis Vlasenko2007-11-161-4/+4
|
* df: add -aDenis Vlasenko2007-11-151-8/+14
| | | | | | | | | | | | df: don't special case rootfs and /dev/root function old new delta df_main 746 684 -62 find_block_device 111 - -111 find_block_device_in_dir 243 - -243 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 0/1 up/down: 0/-416) Total: -416 bytes
* df: add -i (conditional on CONFIG)Denis Vlasenko2007-11-152-4/+29
| | | | | uasge: trim a bit
* tr: more of code shrink (getopt32-ification)Denis Vlasenko2007-11-131-30/+18
| | | | | | | | runtest: cleanup. Method of getting $applets was truly bizarre function old new delta tr_main 655 527 -128
* tr: better comments, small code shrinkDenis Vlasenko2007-11-131-47/+60
| | | | | | | function old new delta expand 2232 2230 -2 tr_main 677 655 -22
* tr: properly detect read errors (Fernando Silveira <fsilveira@gmail.com>)Denis Vlasenko2007-11-131-3/+5
| | | | | | | | | readprofile: use xwrite function old new delta tr_main 679 677 -2 readprofile_main 1964 1944 -20
* who: code shrink by Tito <farmatito@tiscali.it>Denis Vlasenko2007-11-131-3/+1
| | | | | | function old new delta who_main 271 259 -12
* who: fix wrong date/time field sizeDenis Vlasenko2007-11-111-2/+3
|
* readlink: realpath requires PATH_MAX, bb_common_bufsiz1 can be too smallDenis Vlasenko2007-11-101-2/+2
| | | | | umount: don't actually need char[2 * PATH_MAX] for realpath
* fbset: fix buglet where we were using wrong pointerDenis Vlasenko2007-11-061-15/+21
| | | | | | readahead: stop using stdio.h *: style fixes
* fixes revealed by randomconfig runDenis Vlasenko2007-10-161-1/+1
|
* stty: incorporate strings into struct instead of keeping pointers there.Denis Vlasenko2007-10-111-85/+123
| | | | | | | | | | | | | static: text data bss dec hex filename 767535 974 9420 777929 bdec9 busybox_old 767403 974 9420 777797 bde45 busybox_unstripped dynamic -fpic: text data bss dec hex filename 718954 14030 12032 745016 b5e38 busybox_old 720278 12534 12032 744844 b5d8c busybox_unstripped
* add -fvisibility=hidden to CC flags, mark XXX_main functionsDenis Vlasenko2007-10-1171-73/+73
| | | | | EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so
* stat: code shrink; stop using bss; stop using strncat incorrectlyDenis Vlasenko2007-10-051-94/+97
| | | | | | | | | | | | | | | | | function old new delta printfs - 28 +28 strcatc - 26 +26 human_time 41 44 +3 print_it 229 219 -10 buf 30 - -30 print_statfs 420 358 -62 print_stat 1089 921 -168 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 1/3 up/down: 57/-270) Total: -213 bytes text data bss dec hex filename 771105 1029 9552 781686 bed76 busybox_old 770892 1029 9520 781441 bec81 busybox_unstripped
* delete now unused check_header_gzip.cDenis Vlasenko2007-10-051-3/+3
| | | | | sum: do not use uintmax needlessly
* tail: sizeof(buf) is sizeof(char*)! must be BUFSIZDenis Vlasenko2007-10-051-2/+2
|
* tail: work correctly on /proc files (Kazuo TAKADA <kztakada@sm.sony.co.jp>)Denis Vlasenko2007-10-021-7/+14
|
* printf("%s\n") -> puts()Denis Vlasenko2007-10-011-1/+1
|
* 'simple' error message functions by Loic Grenie <loic.grenie@gmail.com>.Denis Vlasenko2007-10-0119-25/+25
| | | | | 263 bytes saved.
* introduce bb_putchar(). saves ~1800 on uclibc (less on glibc).Denis Vlasenko2007-09-2713-27/+28
|
* install: fix bug in "install -c file dir" (tries to copy dir into dir too)Denis Vlasenko2007-09-261-21/+26
| | | | | install: 'support' (ignore) -v and -b
* cp: -r and -R imply -d (coreutils compat)Denis Vlasenko2007-09-251-1/+2
|
* *: kill bb_get_last_path_component, replace with two functionsDenis Vlasenko2007-09-245-6/+7
| | | | | | | | | (one which strips trailing slash and one which does not) wget: straighten out as a result of above change text data bss dec hex filename 5056 1 0 5057 13c1 busybox.t4/networking/wget.o 5022 0 0 5022 139e busybox.t5/networking/wget.o
* test: correct confusing placement of "const"Denis Vlasenko2007-09-211-1/+1
|
* update Glenn McGrath's email addressDenis Vlasenko2007-09-213-3/+3
|
* du: remove statics (by Bernhard Fischer <rep.dot.nop@gmail.com>)Denis Vlasenko2007-09-031-64/+64
| | | | | | | | | | | | | | | | | | | | | | | | | $ ./.cmk bloatcheck function old new delta du_main 340 348 +8 print 39 40 +1 status 129 125 -4 slink_depth 4 - -4 print_files 4 - -4 one_file_system 4 - -4 max_print_depth 4 - -4 du_depth 4 - -4 disp_hr 4 - -4 count_hardlinks 4 - -4 du 407 401 -6 dir_dev 8 - -8 ------------------------------------------------------------------------------ (add/remove: 0/8 grow/shrink: 2/2 up/down: 9/-46) Total: -37 bytes text data bss dec hex filename 864 12 28 904 388 busybox.t3/coreutils/du.o 867 0 0 867 363 busybox.t4/coreutils/du.o 770647 1063 10788 782498 bf0a2 busybox.t3/busybox_unstripped 770651 1051 10764 782466 bf082 busybox.t4/busybox_unstripped
* install: shrink a bit, fix two bugletsDenis Vlasenko2007-08-261-29/+38
|
* make copy_file() a bit easier to understand, and smallerDenis Vlasenko2007-08-252-2/+2
| | | | | | | | | | | function old new delta copy_file 1565 1447 -118 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-118) Total: -118 bytes text data bss dec hex filename 770938 1063 10788 782789 bf1c5 busybox_old 770814 1063 10788 782665 bf149 busybox_unstripped
* cp,mv: simpler arg[cv] handling -> smallish code savingsDenis Vlasenko2007-08-243-34/+39
|
* runit/*: get rid of tai[a] time abstraction, it's too bloaty.Denis Vlasenko2007-08-201-3/+2
| | | | | | | | | | text data bss dec hex filename 772537 1058 11092 784687 bf92f busybox.t0/busybox 772459 1058 11060 784577 bf8c1 busybox.t1/busybox 772326 1058 11028 784412 bf81c busybox.t2/busybox 772158 1058 10980 784196 bf744 busybox.t3/busybox 771490 1055 10988 783533 bf4ad busybox.t4/busybox
* don't pass argc in getopt32, it's superfluousDenis Vlasenko2007-08-1840-44/+44
| | | | | | | | (add/remove: 0/0 grow/shrink: 12/131 up/down: 91/-727) Total: -636 bytes text data bss dec hex filename 773469 1058 11092 785619 bfcd3 busybox_old 772644 1058 11092 784794 bf99a busybox_unstripped
* hdparm: shrink rodata by ~250 bytesDenis Vlasenko2007-08-161-1/+1
|
* whitespace fixes, no code changesDenis Vlasenko2007-08-163-3/+4
|
* trylink: automatically use custom link script if user provides oneDenis Vlasenko2007-08-141-1/+1
| | | | | | vinfo_msg: one user (info_msg), incorporate in it *: style fixes
* expand, unexpand: new applets from Tito <farmatito@tiscali.it>Denis Vlasenko2007-08-134-2/+237
|
* df: match coreutils behavior of wrapping lines if filesystem name is too long.Denis Vlasenko2007-08-131-25/+24
| | | | | df: trim help text
* httpd: round down sendfile byte count to 64kDenis Vlasenko2007-08-131-1/+1
| | | | | *: style fixes
* s/#ifdef CONFIG_/#if ENABLE_/gDenis Vlasenko2007-08-132-5/+5
|
* trylink: produce even more info about final link stageDenis Vlasenko2007-08-1223-81/+85
| | | | | | | | | trylink: explain how to modify link and drastically decrease amount of padding (unfortunately, needs hand editing ATM). *: add ALIGN1 / ALIGN2 to global strings and arrays of bytes and shorts size saving: 0.5k
* ls,ps,watch: measure terminal width on fd 0, not 1Denis Vlasenko2007-08-091-1/+1
|
* stat: fix option -Z segv (bug 1454)Denis Vlasenko2007-08-091-5/+11
|
* catv: catv without arguments was trying to use environ as argv.Denis Vlasenko2007-08-061-3/+6
| | | | | (Alex Landau <landau_alex@yahoo.com>)
* env: micro-optimizationDenis Vlasenko2007-08-062-15/+10
| | | | | | | | | | | | | | printenv: fix "printenv VAR1 VAR2" bug (wasn't printing VAR2) (spotted by kalyanatejaswi balabhadrapatruni <kalyanatejaswi@yahoo.co.in>) env_main 267 260 -7 printenv_main 147 75 -72 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-79) Total: -79 bytes text data bss dec hex filename 770336 1096 11228 782660 bf144 busybox_old 770256 1096 11228 782580 bf0f4 busybox_unstripped
* dd: use unsigned printf specifier for # of blocksDenis Vlasenko2007-07-301-2/+3
|
* dd: fix newly introduced bug (introduced by me)Denis Vlasenko2007-07-291-1/+1
|
* multiplier suffixes are short, store them directly in struct suffix_multDenis Vlasenko2007-07-277-11/+11
| | | | | | | | | | | | function old new delta xstrtoul_range_sfx 226 217 -9 xstrtoull_range_sfx 291 280 -11 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-20) Total: -20 bytes text data bss dec hex filename 669128 2668 13616 685412 a7564 busybox_old 669108 2668 13616 685392 a7550 busybox_unstripped
* dd: fix bug where we assume count=INT_MAX when count is unspecified;Denis Vlasenko2007-07-271-32/+53
| | | | | | | | | | | | | shrink dd while at it function old new delta dd_main 1453 1368 -85 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-85) Total: -85 bytes text data bss dec hex filename 669216 2668 13616 685500 a75bc busybox_old 669128 2668 13616 685412 a7564 busybox_unstripped