Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-09-06 | more C standard compat fixes from Dan Fandrich | Denys Vlasenko | |
function old new delta docolon 207 204 -3 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||
2009-07-08 | move libc related stuff out of platform.h | Denys Vlasenko | |
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||
2009-07-05 | Patches to enable FreeBSD build | Denys Vlasenko | |
platform.h: fix wrong check for endianness, fix lchown aliasing to chown on uclibc. Code seems to not be affected in my testing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||
2009-04-19 | mdev: Rob's #if forest removal | Denis Vlasenko | |
*: remove superfluous conts in "f(type *const param)" | |||
2008-07-05 | *: rename ATTRIBUTE_XXX to just XXX. | Denis Vlasenko | |
2008-06-25 | whitespace fixes. no code changes | Denis Vlasenko | |
2008-05-13 | more -Wall warning fixes from Cristian Ionescu-Idbohrn. | Denis Vlasenko | |
This time it resulted in small code changes: function old new delta nexpr 820 828 +8 tail_main 1200 1202 +2 wrapf 166 167 +1 parse_mount_options 227 209 -18 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/1 up/down: 11/-18) Total: -7 bytes | |||
2008-01-27 | stty: fix mishandling of 'control' keywords (Ralf Friedl ↵ | Denis Vlasenko | |
<Ralf.Friedl@online.de>) | |||
2007-11-24 | stty: reorganize data tables - save 0.5k | Denis Vlasenko | |
function old new delta mode_name - 496 +496 control_name - 91 +91 stty_main 1235 1255 +20 find_mode 45 63 +18 find_control 45 63 +18 do_display 482 493 +11 wrapf 165 166 +1 set_mode 761 759 -2 max_col 4 - -4 device_name 4 - -4 control_info 153 34 -119 mode_info 1700 680 -1020 ------------------------------------------------------------------------------ (add/remove: 2/2 grow/shrink: 5/3 up/down: 655/-1149) Total: -494 bytes text data bss dec hex filename 777037 937 9100 787074 c0282 busybox_old 776551 929 9100 786580 c0094 busybox_unstripped | |||
2007-11-18 | stty: mark variable as static | Denis Vlasenko | |
2007-10-11 | stty: incorporate strings into struct instead of keeping pointers there. | Denis Vlasenko | |
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 | |||
2007-10-11 | add -fvisibility=hidden to CC flags, mark XXX_main functions | Denis Vlasenko | |
EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so | |||
2007-09-27 | introduce bb_putchar(). saves ~1800 on uclibc (less on glibc). | Denis Vlasenko | |
2007-08-12 | trylink: produce even more info about final link stage | Denis Vlasenko | |
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 | |||
2007-07-27 | multiplier suffixes are short, store them directly in struct suffix_mult | Denis Vlasenko | |
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 | |||
2007-07-24 | Replace index_in_[sub]str_array with index_in_[sub]strings, | Denis Vlasenko | |
which scans thru "abc\0def\0123\0\0" type strings. Saves 250 bytes. text data bss dec hex filename 781266 1328 11844 794438 c1f46 busybox_old 781010 1328 11844 794182 c1e46 busybox_unstripped | |||
2007-06-25 | Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms ↵ | Denis Vlasenko | |
<wharms@bfs.de>) | |||
2007-05-30 | whitespace fixes | Denis Vlasenko | |
2007-05-26 | usage.c: remove reference to busybox.h | Denis Vlasenko | |
*: s/include "busybox.h"/include "libbb.h" | |||
2007-04-19 | stty: fix option parsing bug (spotted by Sascha Hauer <s.hauer@pengutronix.de>) | Denis Vlasenko | |
2007-04-10 | style fixes. No code changes. | Denis Vlasenko | |
2007-04-08 | add some missed statics on constant objects. | Denis Vlasenko | |
fix few #ifndef ENABLE_xxx # size busybox_old busybox_unstripped text data bss dec hex filename 677152 2920 18208 698280 aa7a8 busybox_old 676420 2920 18208 697548 aa4cc busybox_unstripped | |||
2007-04-04 | - remove some bss users. | Bernhard Reutner-Fischer | |
text data bss dec hex filename 6220 8 14 6242 1862 stty.o.oorig 6219 8 0 6227 1853 stty.o | |||
2007-02-04 | - fix buglet introduced in r17351 in find_param(). Closes #1193 | Bernhard Reutner-Fischer | |
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-01-18 | - reinstate paranoia check in wrapf(). | Bernhard Reutner-Fischer | |
2007-01-18 | stop using global variable needlessly | Denis Vlasenko | |
2007-01-17 | - remove superfluous define that expanded to "!strcmp" | Bernhard Reutner-Fischer | |
- remove some dead code | |||
2007-01-17 | - reuse return code of vsnprintf to avoid pulling in strlen | Bernhard Reutner-Fischer | |
2007-01-17 | - merge display_changed() and display_all() | Bernhard Reutner-Fischer | |
This one is a bit risky but did work for me in cursory testing.. | |||
2007-01-17 | - peruse get_terminal_width_height and remove legacy code for ancient | Bernhard Reutner-Fischer | |
slowaris versions. | |||
2007-01-17 | - rewrite find_param to use index_in_str_array | Bernhard Reutner-Fischer | |
2007-01-17 | - manually inline tty_value_to_baud and remove string_to_baud_or_die | Bernhard Reutner-Fischer | |
(cleanup) | |||
2007-01-17 | - constify some read-only members and remove superfluous casts | Bernhard Reutner-Fischer | |
(cleanup) | |||
2007-01-17 | - reuse option_mask32 for state-handling in main | Bernhard Reutner-Fischer | |
- improve check for errors from fcntl | |||
2007-01-12 | stty: fix bug reported by Paul Albrecht <albrecht@rdi1.com> - | Denis Vlasenko | |
stty -echo didn't work. Introduced by me :( | |||
2007-01-12 | stty: rearrange functions, avoiding the need in forward declarations. | Denis Vlasenko | |
No other code chages. | |||
2007-01-01 | stty: fix width of a field for ppc32 | Denis Vlasenko | |
sort: fix -u to match coreutils 6.3 msh: compile fix (my fault) | |||
2006-11-18 | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | |
2006-10-08 | attempt to regularize atoi mess. | Denis Vlasenko | |
2006-09-29 | Yet another silly little byte saving. couldn't -> cannot | Denis Vlasenko | |
2006-09-19 | stty: fix few bugs found in testing | Denis Vlasenko | |
2006-09-19 | stty: reorder code, reducing need in forward declarations. | Denis Vlasenko | |
added few missed bits of error checking for parameters. | |||
2006-09-19 | stty: convert "enum mode_type" into unnamed enum | Denis Vlasenko | |
(reduces code obfuscation); deindent set_mode; add _or_die suffixes to few functions | |||
2006-09-19 | stty: reduce #ifdef forest | Denis Vlasenko | |
2006-09-19 | stty: simplify linewrapping code a bit | Denis Vlasenko | |
2006-09-19 | stty: style fixes | Denis Vlasenko | |
2006-09-19 | stty: fix a longstanding FIXME (was able to die half-way setting term params) | Denis Vlasenko | |
2006-09-08 | few random readability enhansements. No code changes | Denis Vlasenko | |
2006-08-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob Landley | |
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) |