Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-17 | assorted fixes for breakage found by randomconfig | Denis Vlasenko | |
2007-08-13 | s/#ifdef CONFIG_/#if ENABLE_/g | 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-21 | style fix (stray space before ';') | Denis Vlasenko | |
2007-06-21 | tar: improve OLDGNU compat, make old SUN compat configurable | Denis Vlasenko | |
2007-06-20 | do not do utime() on links, it acts on link targets, and we don't want that. | Denis Vlasenko | |
rename link_name to link_target, less confusing this way. | |||
2007-06-12 | diff: shrink code (-85 bytes): | Denis Vlasenko | |
function old new delta fiddle_sum 8 - -8 diffreg 2717 2690 -27 prepare 334 284 -50 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/2 up/down: 0/-85) Total: -85 bytes s/ATTRIBUTE_ALWAYS_INLINE/ALWAYS_INLINE/g | |||
2007-06-10 | moved biggest stack buffers to malloc space, or made their size configurable | Denis Vlasenko | |
(8k of shell line edit buffer is an overkill) # make ARCH=i386 bloatcheck function old new delta read_line_input 3933 3967 +34 ifaddrlist 348 345 -3 do_loadfont 208 191 -17 edit_file 840 819 -21 .rodata 129112 129080 -32 uncompress 1305 1268 -37 loadfont_main 566 495 -71 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/6 up/down: 34/-181) Total: -147 bytes | |||
2007-06-08 | rmp: add optional support for bz2 data. +50 bytes of code | Denis Vlasenko | |
2007-05-31 | delete tons of extra #includes | Denis Vlasenko | |
2007-05-31 | use "glibc errno" trick not only for ash, but for entire busybox | Denis Vlasenko | |
(add/remove: 1/1 grow/shrink: 37/37 up/down: 139/-228) Total: -89 bytes | |||
2007-05-30 | whitespace fixes | Denis Vlasenko | |
2007-05-26 | xpipe: introduce (saves ~170 bytes) | Denis Vlasenko | |
udhcp/signalpipe.c: use pipe instead of socketpair. | |||
2007-04-13 | style fixes | 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-04-10 | make a few struct bb_applet members conditional | Denis Vlasenko | |
rename sllep_and_die -> xfunc_die make fflush_stdout_and_exit NOFORK-safe fix some buglets found by randomconfig | |||
2007-04-10 | one-liner: fix indentation | Denis Vlasenko | |
2007-04-10 | bunzip2: big style cleanup. No code changes apart from one s/write/safe_write/ | Denis Vlasenko | |
(verified with objdump). | |||
2007-04-07 | random small shrinkage and elimination of statics | Denis Vlasenko | |
2007-04-04 | - sed -e "s/char[[:space:]]*\*[[:space:]]*argv\[\]/char **argv/g" | Bernhard Reutner-Fischer | |
2007-03-26 | Attempt to get more applets compile for NOMMU. | Denis Vlasenko | |
TODO_config_nommu documents what I managed to compile so far (yay! msh works! cool). inetd, telnetd, httpd still do not compile. TODO Also make fork(), daemon() produce warnings on compile stage (in addition to erros on link stage). | |||
2007-03-19 | ls: fix segfault-if-standalone-shell, add big fat comment. | Denis Vlasenko | |
2007-03-15 | gunzip: s/unsigned char extra_short/unsigned extra_short/ | Denis Vlasenko | |
we can unzip openssh-4.3p2.tar.gz now :) | |||
2007-03-14 | get_header_ar: reformatted code, no real changes | Denis Vlasenko | |
2007-03-14 | gzip: reduce global data footprint, part 3 | Denis Vlasenko | |
2007-03-11 | kill superfluous returns at the end of void functions | Denis Vlasenko | |
2007-03-07 | bunzip2/gunzip/uncompress/unlzma: merge into common code - | Denis Vlasenko | |
fix few corner cases, reduce size by 450 bytes. Update testsuite. | |||
2007-03-04 | remove f words | Denis Vlasenko | |
2007-03-03 | tar: handle tarfiles with (broken) checksums a-la Sun. | Denis Vlasenko | |
2007-02-12 | make tar restore mode again | Denis Vlasenko | |
2007-01-13 | whitespace fixes (leading spaces to tab) | 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-05 | Stop tracking buffer size - it is a constant. | Denis Vlasenko | |
Stop ignoring write errors. Fix bugs in this line: rc->buffer_size = read(rc->fd, RC_BUFFER, rc->buffer_size); (a) should use safe_read() (b) just ONE short read (e.g. 4 bytes) will make ALL future reads short! | |||
2007-01-05 | simplify access to buffer, making code a bit smaller | Denis Vlasenko | |
2007-01-03 | extern variable declaration in a .c file is heresy - fixing it | Denis Vlasenko | |
2006-12-26 | merge post-1.3.0 fixes | 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-12-22 | removal of commented-out cruft | Denis Vlasenko | |
2006-12-22 | tar et al: die if bb_copyfd_size copies less than asked for. | Denis Vlasenko | |
(we have bb_copyfd_exact_size now for that kind of usage) | |||
2006-11-27 | style cleanup: return(a) -> return a, part 2 | Denis Vlasenko | |
2006-11-27 | style cleanup: return(a) -> return a, part 1 | Denis Vlasenko | |
2006-11-26 | tar: refuse to untar files with "/../" components | Denis Vlasenko | |
2006-11-26 | tar: correctly skip (and warn about) pax headers. | Denis Vlasenko | |
plug memory leak. save 50 bytes. Wooohooo! we finally can unpack kernel tarballs! |