Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-15 | gzip: Improve ptr_to_globals trick, allowing gcc | Denis Vlasenko | |
to optimize better. -480 bytes. | |||
2007-03-15 | modify ptr_to_globals trick so that we do not violate | Denis Vlasenko | |
type safety (well, sort of ;)) | |||
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-01-22 | cleanups: unnecessary casts, unified const_1, eliminate cross-.c file | Denis Vlasenko | |
prototypes (heresy!), add spaces in places like "flags&NETSTAT_CONNECTED", removed unused #defines, #ifdef -> #if, use uint32_t for ipv4 addrs. | |||
2007-01-12 | random small size optimizations | Denis Vlasenko | |
2006-11-24 | tar: | Denis Vlasenko | |
* unpack: handle tar header fields which are not NUL terminated * pack: handle 4+GB files correctly * pack: refuse to store 101+ softlinks (was truncating link target name) * pack: mask mode with 07777 | |||
2006-11-21 | bb_INET_default[] is really just a const "default", | Denis Vlasenko | |
nothing INET-specific | |||
2006-10-05 | build system overhaul | Denis Vlasenko | |
2006-09-19 | change char *string = "foo" -> char string[] = "foo" | Denis Vlasenko | |
function old new delta xsetenv 45 44 -1 iproute_list_or_flush 1834 1833 -1 ipaddr_modify 1915 1914 -1 ipaddr_list_or_flush 1861 1860 -1 invarg 39 38 -1 do_set 1259 1258 -1 bb_verror_msg 268 267 -1 create_icmp_socket 142 140 -2 create_icmp6_socket 142 140 -2 bb_full_fd_action 324 322 -2 bb_path_mtab_file 10 - -10 .rodata 214796 214720 -76 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/11 up/down: 0/-99) Total: -99 bytes | |||
2006-08-09 | Another whack at scripts/individual. Now builds 212 applets. | Rob Landley | |
2006-07-10 | Replace current verbose GPL stuff in libbb/*.c with one-line GPL boilerplate. | "Robert P. J. Day" | |
2006-06-07 | - reuse strings and messages. Saves about 600B | Bernhard Reutner-Fischer | |
2006-05-26 | - introduce and use bb_path_wtmp_file for portability (saves 11 Bytes). | Bernhard Reutner-Fischer | |
- fix last.c to also look at the double-underscore UT_ defines. | |||
2006-04-05 | - include proper headers. | Bernhard Reutner-Fischer | |
2006-04-03 | - move buffer allocation schemes to libbb.h | Bernhard Reutner-Fischer | |
- include the correct headers: applets need busybox.h while lib* need libbb.h | |||
2006-02-16 | moved BB_BANNER to applets/version.c file: make kernel like version, | "Vladimir N. Oleynik" | |
removed depend loop: busybox.h depend with BB_BT, and all sources depend with busybox.h | |||
2005-10-15 | common BUFSIZ BSS buffer, small reduce code, data and bss | "Vladimir N. Oleynik" | |
2005-10-12 | usage bb_dev_null | "Vladimir N. Oleynik" | |
2005-10-12 | bb_dev_null | "Vladimir N. Oleynik" | |
2005-04-16 | Add bb_msg_read_error | Eric Andersen | |
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2003-09-02 | move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as one | Glenn L McGrath | |
constant. Vodz last_patch_107 | |||
2003-07-14 | Update a bunch of docs. Run a script to update my email addr. | Eric Andersen | |
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2002-10-10 | last_patch61 from vodz: | Eric Andersen | |
New complex patch for decrease size devel version. Requires previous patch. Also removed small problems from dutmp and tar applets. Also includes vodz' last_patch61_2: Last patch correcting comment for #endif and more integrated with libbb (very reduce size if used "cat" applet also). Requires last_patch61 for modutils/config.in. | |||
2002-06-23 | Port over the last of the tinylogin applets | Eric Andersen | |
-Erik | |||
2001-10-24 | Major rework of the directory structure and the entire build system. | Eric Andersen | |
-Erik | |||
2001-07-12 | Patch from vodz: | Eric Andersen | |
Changed email address cmdedit API change optimizations for traceroute and md5sum added a new shared create_icmp_socket() function | |||
2001-05-11 | Fix a segfault in lash, hush, and cmdedit. Each of these used | Eric Andersen | |
xgetcwd, but did not check the return for a NULL, and then continued to call strlen on the NULL when the cwd had been removed from under it. -Erik | |||
2001-04-30 | These messages can be .rodata, so make them even more const. | Eric Andersen | |
-Erik | |||
2001-04-25 | libbb.h now includes ../busybox.h. This way, files in libbb that have | Mark Whitley | |
BB_[FEATURE] #defines won't be ignored. Credit to Magnus Damm for spotting this. | |||
2001-04-25 | Move messages.c to libbb. Make each string in messages.c be its own .o file. | Eric Andersen | |
This way, we can new get rid of all that tedious #define rubbish we used to need to enable specific messages. This way is enormously simpler, and as a bonus also ends up saving us 96 bytes. -Erik |