Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-08 | optimize 16- and 32-bit moves | Denis Vlasenko | |
function old new delta udhcpd_main 1239 1257 +18 udhcp_add_simple_option 93 92 -1 buffer_read_le_u32 19 18 -1 unpack_gz_stream_with_info 526 520 -6 dnsd_main 1470 1463 -7 udhcp_run_script 1208 1186 -22 send_ACK 255 229 -26 arping_main 1661 1623 -38 send_offer 470 428 -42 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/8 up/down: 18/-143) Total: -125 bytes | |||
2008-11-01 | gunzip: restore mtime. approx +80 bytes of code | Denis Vlasenko | |
rpm: make code more robust lsmod: small code shrink | |||
2008-07-05 | *: rename ATTRIBUTE_XXX to just XXX. | Denis Vlasenko | |
2008-06-27 | *: introduce and use FAST_FUNC: regparm on i386, otherwise no-on | Denis Vlasenko | |
text data bss dec hex filename 808035 611 6868 815514 c719a busybox_old 804472 611 6868 811951 c63af busybox_unstripped | |||
2008-05-15 | more of -Wall fixes from Cristian Ionescu-Idbohrn. | Denis Vlasenko | |
Some are fixing real bugs. function old new delta syslogd_main 938 958 +20 get_signum 136 143 +7 obj_load 777 782 +5 recv_from_to 210 214 +4 get_next_block 1795 1799 +4 display_topmem_process_list 1117 1121 +4 logread_main 484 487 +3 buffer_fill_and_print 73 76 +3 kill_main 687 689 +2 ll_remember_index 240 241 +1 do_stats 452 453 +1 if_readconf 166 165 -1 display_process_list 1192 1191 -1 run_applet_and_exit 507 505 -2 print_signames 33 31 -2 parse_one_line 1092 1090 -2 find_out_spec 57 55 -2 add_ksymoops_symbols 421 419 -2 ash_main 1407 1402 -5 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 11/8 up/down: 54/-17) Total: 37 bytes | |||
2008-02-04 | unzip: do not try to read entire compressed stream at once (it can be huge) | Denis Vlasenko | |
unzip: handle short reads correctly | |||
2007-11-12 | gzip: fix a case where tar xzf fails (we use uninitialized fd) | Denis Vlasenko | |
2007-10-13 | bzip2: port bzip2 1.0.4 to busybox. note: bzip2 code resides | Denis Vlasenko | |
in separate directory (archival/bz/*) and is covered by BSD-style license. code size: 13k | |||
2007-10-05 | gunzip: support concatenated gz files. | Denis Vlasenko | |
text data bss dec hex filename 770988 1029 9552 781569 bed01 busybox.t0/busybox 771105 1029 9552 781686 bed76 busybox.t3/busybox | |||
2007-09-21 | update Glenn McGrath's email address | 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-06-08 | rmp: add optional support for bz2 data. +50 bytes of code | Denis Vlasenko | |
2007-04-10 | make compressed help code NOMMU- and NOFORK-friendly - | Denis Vlasenko | |
no forking anymore, bunzip2 unpack routine now does all it in memory. | |||
2007-03-14 | gzip: reduce global data footprint, part 3 | Denis Vlasenko | |
2007-01-10 | missed a few #undefs (no real impact I think) | Denis Vlasenko | |
2007-01-10 | fix bug 1146 (gunzip breakage introduced by me --vda) | Denis Vlasenko | |
2007-01-06 | move [g]zip decompressor state into malloc'ed buffer. size: | Denis Vlasenko | |
text data bss dec hex 5256 0 108 5364 14f4 - old 4915 0 0 4915 1333 - new | |||
2007-01-05 | split inflate_xx_setup() subroutines from inflate_xx() | Denis Vlasenko | |
2007-01-05 | do not expose internal state of [g]zip unpacker. | Denis Vlasenko | |
fix memory leak in inflate_gunzip. | |||
2007-01-05 | Stopped doing assignments inside expressions. | Denis Vlasenko | |
Who wrote this gem, I wonder? n -= (e = (e = gunzip_wsize - ((d &= gunzip_wsize - 1) > w ? d : w)) > n ? n : e); | |||
2007-01-05 | decompress_unzip: preparatory patch | Denis Vlasenko | |
2007-01-03 | extern variable declaration in a .c file is heresy - fixing it | Denis Vlasenko | |
2006-12-26 | style fixes | Denis Vlasenko | |
last xcalloc replaced by xzalloc | |||
2006-12-22 | remove useless casts (type*) xzalloc(...) | Denis Vlasenko | |
2006-11-27 | style cleanup: return(a) -> return a, part 1 | Denis Vlasenko | |
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |
2006-10-01 | g[un]zip: add support for -v (verbose). | Denis Vlasenko | |
Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that. | |||
2006-09-30 | vconfig: fix bug 701 (I be damned if I understand it) | Denis Vlasenko | |
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-09-06 | removed a lot of trailing \n in bb_msg() calls. It is added | Denis Vlasenko | |
automatically by function itself. | |||
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.) | |||
2006-07-16 | Cleaup read() and write() variants, plus a couple of new functions like | Rob Landley | |
xlseek and fdlength() for the new mkswap. | |||
2006-07-01 | Remove all usage of the "register" storage class specifier. | "Robert P. J. Day" | |
2006-06-25 | Various cleanups I made while going through Erik Hovland's patch submissions, | Rob Landley | |
some of which are even from him. :) | |||
2006-04-10 | Patch from Rob Sullivan to consolidate crc32 table generation. | Rob Landley | |
2006-04-02 | - janitorial: huft_build is never used outside of decompress_unzip.c and has no | Bernhard Reutner-Fischer | |
prototype (which suggests that it's of no general use) so make it static for now. | |||
2006-03-10 | Patch from Denis Vlasenko turning static const int (which gets emitted into | Rob Landley | |
the busybox binary) into enums (which don't). | |||
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-02-20 | The gentoo security guys found another way to segfault busybox's decompression | Rob Landley | |
code: we can do a null dereference if one of our huffman tables has all zero length codes. This fixes it. (Thanks solar.) | |||
2006-01-30 | fixup a few types to prevent gcc (rightfully) whining about mixing | Eric Andersen | |
signed and unsigned, unmatches pointer target types, etc | |||
2006-01-10 | Don't return 0 when there's an error. | Rob Landley | |
2005-10-07 | - remove superfluous C statements ";;" in decompress_unzip.c, dpkg_deb.c ↵ | Bernhard Reutner-Fischer | |
ifconfig.c - gzip.c: see if O_NOFOLLOW is defined before using it, else take alternate path closes bug #221 (partially; The rest will follow later). | |||
2005-09-14 | remove unrequired dependences | "Vladimir N. Oleynik" | |
2005-08-31 | Anand Avati hit an integer overflow problem in our unzip code. | Rob Landley | |
2005-08-16 | Bernhard Fischer says: use xmalloc() instead of malloc() | Mike Frysinger | |
2005-07-20 | applying fixes from: | Paul Fox | |
0000142: unzip enhancements | |||
2005-03-01 | When filling the bit buffer, gzip decompression apparently never checked for ↵ | Manuel Novoa III | |
end of file, causing it to hang on corrupted input. | |||
2004-04-25 | Update my email address, document some of my tasks in the AUTHORS file | Glenn L McGrath | |
2004-04-14 | Larry Doolittle writes: | Eric Andersen | |
This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |