Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-12 | A few more string duplicates found & eliminated | Denis Vlasenko | |
# size busybox_old busybox_unstripped text data bss dec hex filename 679693 2700 15632 698025 aa6a9 busybox_old 679523 2700 15632 697855 aa5ff busybox_unstripped | |||
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-06-05 | - kiltedknight writes: Busybox incorrectly parses a line from the status ↵ | Bernhard Reutner-Fischer | |
file, claiming that a required package is not installed or tagged to be installed when it actually is. Closes #1221 | |||
2007-06-05 | - fix typo in error message. Closes #1308 | Bernhard Reutner-Fischer | |
2007-06-04 | Audit bb_common_bufsiz usage, add script which looks for misuse. | Denis Vlasenko | |
tr: stop using globals needlessly. code: -103 bytes | |||
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 | usage.c: remove reference to busybox.h | Denis Vlasenko | |
*: s/include "busybox.h"/include "libbb.h" | |||
2007-05-26 | xpipe: introduce (saves ~170 bytes) | Denis Vlasenko | |
udhcp/signalpipe.c: use pipe instead of socketpair. | |||
2007-04-16 | style fixes, no code changes | Denis Vlasenko | |
2007-04-13 | dpkg: use nitfields which are a bit closer to typical ushort. | Denis Vlasenko | |
Code size -800. | |||
2007-04-13 | style fixes | Denis Vlasenko | |
2007-04-12 | style fixes. No code changes | Denis Vlasenko | |
2007-04-11 | bb_full_fd_action: remove potential xmalloc from NOFORK path | Denis Vlasenko | |
cat: stop using stdio.h opens libbb: introduce & use open[3]_or_warn function old new delta open3_or_warn - 54 +54 bb_cat 115 144 +29 open_or_warn - 25 +25 unlzma 2404 2412 +8 chattr_main 334 339 +5 xstrtoul_range_sfx 251 255 +4 telnet_main 1514 1510 -4 static.opt 4 - -4 qgravechar 122 118 -4 fuser_add_pid 61 54 -7 fuser_add_inode 154 147 -7 writeFileToTarball 1542 1534 -8 refresh 1156 1148 -8 do_show 856 846 -10 read_leases 212 200 -12 setup_redirects 236 222 -14 iproute_list_or_flush 1582 1568 -14 read_config 427 411 -16 write_leases 284 264 -20 hash_file 338 318 -20 copy_file 1760 1740 -20 do_iproute 2610 2588 -22 bb_full_fd_action 320 269 -51 open_to_or_warn 103 49 -54 fuser_main 1660 1596 -64 .rodata 131160 131096 -64 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 4/19 up/down: 125/-423) Total: -298 bytes | |||
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-08 | getopt32: fix llist_t options ordering. llist_rev is not unused. | Denis Vlasenko | |
function old new delta tar_main 705 695 -10 sort_main 928 918 -10 decode_format_string 886 876 -10 run_parts_main 197 185 -12 ps_main 513 500 -13 wget_main 2764 2750 -14 awk_main 1014 1000 -14 od_main 2886 2866 -20 llist_rev 25 - -25 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/8 up/down: 0/-128) Total: -128 bytes | |||
2007-04-08 | find: fix handling of -prune | Denis Vlasenko | |
recursive_actions: uppercase flag constants | |||
2007-04-07 | random small shrinkage and elimination of statics | Denis Vlasenko | |
2007-04-05 | libbb: add xunlink() | Denis Vlasenko | |
patch: do not try to delete same file twice | |||
2007-04-04 | - sed -e "s/char[[:space:]]*\*[[:space:]]*argv\[\]/char **argv/g" | Bernhard Reutner-Fischer | |
2007-03-31 | unzip: fix xstrndup bug (xstrndup(s,n) can allocate less than n bytes!) | Denis Vlasenko | |
2007-03-29 | dpkg: run_package_script() returns 0 if all ok and non-zero if failure. | Denis Vlasenko | |
The result code was checked incorrectly in two places. (from "Kim B. Heino" <Kim.Heino@bluegiga.com>) | |||
2007-03-29 | - fold recurse, depthFirst and dereference params into one param flags. | Bernhard Reutner-Fischer | |
Minor size improvement (-16b for size, -24b according to bloat-o-meter). | |||
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-22 | gzip: fix -d option handling | Denis Vlasenko | |
2007-03-20 | fix accumulated whitespace and indentation damage | Denis Vlasenko | |
2007-03-19 | dpkg: free_package(NULL) is ok, so don't test for NULL, just free. | Denis Vlasenko | |
2007-03-19 | ls: fix segfault-if-standalone-shell, add big fat comment. | Denis Vlasenko | |
2007-03-19 | Kim B. Heino writes: | Bernhard Reutner-Fischer | |
When installing a new package with dpkg dependencies are checked correctly. But when I try to update an existing package, the dependencies are checked against the old package, not against new package. Thus the new package can break dependencies. | |||
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-15 | gzip: Improve ptr_to_globals trick, allowing gcc | Denis Vlasenko | |
to optimize better. -480 bytes. | |||
2007-03-15 | fix TODO: getopt32 should reset optind to 1 itself | Denis Vlasenko | |
2007-03-15 | modify ptr_to_globals trick so that we do not violate | Denis Vlasenko | |
type safety (well, sort of ;)) | |||
2007-03-14 | get_header_ar: reformatted code, no real changes | Denis Vlasenko | |
2007-03-14 | gzip: bbunzip integration fixes | Denis Vlasenko | |
2007-03-14 | gzip: use common bbunzip infrastructure - ~700 bytes code less | Denis Vlasenko | |
2007-03-14 | gzip: reduce global data footprint, part 3 | Denis Vlasenko | |
2007-03-14 | gzip: reduce global data footprint, part 2 | Denis Vlasenko | |
2007-03-14 | gzip: reduce global data footprint, part 1 | Denis Vlasenko | |
2007-03-12 | bbunzip: remove extra formatting directives in comments | Denis Vlasenko | |
2007-03-11 | kill superfluous returns at the end of void functions | Denis Vlasenko | |
2007-03-11 | fix buglets found by randomconfig run | Denis Vlasenko | |
2007-03-09 | bbunzip: size optimization: ~90 bytes | Denis Vlasenko | |
2007-03-07 | bbunzip: fix comments to match reality | Denis Vlasenko | |