Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-03 | - make sure that we see all lib*/.c in IMA-mode even when not building the .so | 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-04-03 | - make append_option and multiconvert static. | Bernhard Reutner-Fischer | |
2006-04-03 | - coalesce printf calls. | Bernhard Reutner-Fischer | |
text data bss dec hex filename 3474 4 96 3574 df6 networking/arping.o.orig 3424 4 96 3524 dc4 networking/arping.o | |||
2006-04-03 | - use bb_opt_complementally; Saves another 14 bytes. (thanks again, vodz) | Bernhard Reutner-Fischer | |
2006-04-03 | - do away with useless fwd-decls, redundant bb_printf calls, silence warning | Bernhard Reutner-Fischer | |
about comparing signed and unsigned and make stuff static. text data bss dec hex filename 6944 0 0 6944 1b20 util-linux/ipcs.o.oorig 6509 0 0 6509 196d util-linux/ipcs.o TODO: bb_getopt_ulflags, and further simplifications | |||
2006-04-03 | - set flags in a more reasonable manner. Thanks, vodz. | Bernhard Reutner-Fischer | |
text data bss dec hex filename 3520 4 96 3620 e24 networking/arping.o.oorig 3488 4 96 3588 e04 networking/arping.o | |||
2006-04-02 | - include proper prototypes in libunarchive. | Bernhard Reutner-Fischer | |
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-04-02 | - janitorial: include proper prototypes in libiproute. | Bernhard Reutner-Fischer | |
2006-04-02 | - switch Warning Of the Week to wrong or missing prototypes. | Bernhard Reutner-Fischer | |
e.g. archival/uncompress.c wrongly includes libbb.h instead of busybox.h decompress_bunzip2.c,open_transformer.c don't include the proper "unarchive.h" etc, etc. | |||
2006-04-02 | - typos: s/compatability/compatibility/g;s/compatable/compatible/g; | Bernhard Reutner-Fischer | |
2006-04-02 | - typo: s/compenent/component/g | Bernhard Reutner-Fischer | |
add a bit of documentation. | |||
2006-04-02 | New version from Tito. | Rob Landley | |
2006-04-01 | work outside of the srctree | Mike Frysinger | |
2006-04-01 | The build broke for me on gcc 4.0.3 due to an #include having the wrong patch. | Rob Landley | |
2006-04-01 | Bug spotted by Kumar Gala. Hopefully this fixes it... | Rob Landley | |
2006-04-01 | Patch from KRONSTORFER Horst to Fix a size mismatch in ping, such as the 56/84 | Rob Landley | |
mismatch inthe following example: # ping -c 1 172.16.2.1 PING 172.16.2.1 (172.16.2.1): 56 data bytes 84 bytes from 172.16.2.1: icmp_seq=0 ttl=64 time=0.2 ms | |||
2006-04-01 | new test for source code sanity | Mike Frysinger | |
2006-04-01 | move source code tests out into a sep file rather than just ↵ | Mike Frysinger | |
disabling/breaking them | |||
2006-04-01 | remove bogus " | Mike Frysinger | |
2006-04-01 | silence error if busybox.links doesnt exist and run tests that begin with "all_" | Mike Frysinger | |
2006-04-01 | Ext2fs cleanup from Garrett Kajmowicz. | Rob Landley | |
2006-03-31 | - use RESERVE_CONFIG_BUFFER and a bit of whitespace-cleanup. defconfig: | Bernhard Reutner-Fischer | |
text data bss dec hex filename 1307 0 0 1307 51b util-linux/hwclock.o.oorig 1255 0 0 1255 4e7 util-linux/hwclock.o | |||
2006-03-31 | - add option to suppress the terse usage messages. Saves 6.8k for defconfig: | Bernhard Reutner-Fischer | |
text data bss dec hex filename 861791 11264 1039140 1912195 1d2d83 busybox.have-terse-usage 854799 11264 1039140 1905203 1d1233 busybox.no-terse | |||
2006-03-31 | - use RESERVE_CONFIG_BUFFER. For defconfig this gives: | Bernhard Reutner-Fischer | |
text data bss dec hex filename 3627 4 120 3751 ea7 networking/arping.o.oorig 3548 4 96 3648 e40 networking/arping.o.r14710 3520 4 96 3620 e24 networking/arping.o | |||
2006-03-31 | - update help text. | Bernhard Reutner-Fischer | |
the interface argument is now a lowercase 'i' to match the big arping commandline-syntax. | |||
2006-03-31 | - shrink it a bit further. | Bernhard Reutner-Fischer | |
text data bss dec hex filename 3627 4 120 3751 ea7 networking/arping.o.oorig 3548 4 96 3648 e40 networking/arping.o | |||
2006-03-30 | Shrink patch from Bernhard Fischer. | Rob Landley | |
2006-03-30 | - rename clean_up in tune2fs and mke2fs to be prefixed with their applet names. | Bernhard Reutner-Fischer | |
Purely cosmetic to ease readability. | |||
2006-03-30 | - fix paste'o which i overlooked when applying dalias' fmt stuff. | Bernhard Reutner-Fischer | |
2006-03-30 | Clarify. | Rob Landley | |
2006-03-30 | Update ipaddr help to match reality. | Rob Landley | |
2006-03-29 | fix from David Daney, on busybox mailing list: | Paul Fox | |
> The problem is that if the zcip protocol times out at about the same > time another ARP packet is being received, the newly calculated timeout > may be set to wait forever. This prevents the protocol from progressing > through its various states. > > The Fix is to set the timeout to zero if it used to be a positive > number, but it has already expired. This causes the next protocol state > to be entered immediately instead of never. > > If OK please commit. > > Also note that if you may have to apply the patch on this page: > > http://www.science.uva.nl/research/air/wiki/LinkLocalARPMeasurements > > To the linux kernel to get proper zcip behavior. > | |||
2006-03-29 | - Rich Felker writes: fix invalid printf format strings | Bernhard Reutner-Fischer | |
http://busybox.net/lists/busybox/2006-March/019568.html text data bss dec hex filename 900619 10316 1038724 1949659 1dbfdb busybox.oorig 900603 10316 1038724 1949643 1dbfcb busybox | |||
2006-03-29 | - warn a bit more verbosely about fmt stuff for non-release versions | Bernhard Reutner-Fischer | |
2006-03-29 | - mark trunk as 1.2.0-pre0 | Bernhard Reutner-Fischer | |
2006-03-29 | add public-domain release | Paul Fox | |
2006-03-29 | - we only need obj_gpl_license if ENABLE_FEATURE_CHECK_TAINTED_MODULE is set | Bernhard Reutner-Fischer | |
2006-03-29 | - shrink mkswap and make v0 support optional. Thanks also to Tito for his ideas. | Bernhard Reutner-Fischer | |
http://busybox.net/lists/busybox/2006-March/019326.html 2137 8 28 2173 87d util-linux/mkswap.o.orig 1890 8 28 1926 786 util-linux/mkswap.o.v0+v1 1560 4 28 1592 638 util-linux/mkswap.o.v1 | |||
2006-03-29 | - shrink dmesg a bit. | Bernhard Reutner-Fischer | |
http://busybox.net/lists/busybox/2006-March/019477.html | |||
2006-03-29 | More extern removal from Robert P. Day. | Rob Landley | |
2006-03-29 | find ./ -name .cvsignore | xargs svn rm | Bernhard Reutner-Fischer | |
2006-03-29 | Documentation from Jan Kiszka | Rob Landley | |
2006-03-29 | Kumar Gala tracked down a problem with NFS mounting. This is a different fix | Rob Landley | |
from his, but to the same problem. | |||
2006-03-28 | Mike Frysinger pointed out we can go | Rob Landley | |
CFLAGS=-I/usr/some/funky/path/to/selinux \ LDFLAGS=-L/usr/some/funky/path/to/selinux make So Jan Kiszka reverted part of the selinux patch. | |||
2006-03-28 | Bernhard Fischer spotted that we shouldn't free fstype if we didn't allocate | Rob Landley | |
it. | |||
2006-03-28 | fix behavior of ZZ, with respect to readonly mode(s). original | Paul Fox | |
patch and report from Alexander Griesser. | |||
2006-03-28 | remove some more config code rob missed in rev 13701 cleanup as reported by ↵ | Mike Frysinger | |
Robert P. J. Day | |||
2006-03-28 | just whitespace fixes | Mike Frysinger | |