aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* conspy: new appletPascal Bellard2010-06-211-0/+472
| | | | | Signed-off-by: Pascal Bellard <pascal.bellard@ads-lu.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* decompress_unxz: use common stringDenys Vlasenko2010-06-211-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* unxz: update from XZ embedded gitDenys Vlasenko2010-06-205-179/+270
| | | | | | | | | | | | | | | function old new delta rc_reset - 21 +21 unpack_xz_stream 2342 2357 +15 lzma_reset 102 64 -38 lzma_len 506 443 -63 xz_dec_lzma2_run 1438 1374 -64 xz_dec_reset 73 - -73 lzma_main 2517 2183 -334 ------------------------------------------------------------------------------ (add/remove: 1/1 grow/shrink: 1/4 up/down: 36/-572) Total: -536 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* tweak TODO fileDenys Vlasenko2010-06-191-108/+10
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: bump default -sNUM up to 32k. Use sysconf() to trim it down if necessaryDenys Vlasenko2010-06-191-25/+27
| | | | | | | function old new delta xargs_main 819 830 +11 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* added Config.in to .gitignoreDenys Vlasenko2010-06-191-0/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* cosmetics on top of Dan's patchesDenys Vlasenko2010-06-193-6/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Define GNU-specific link options in one placeDan Fandrich2010-06-191-21/+18
| | | | | | | This makes them easier to change to support a non-GNU toolchain. Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Added code for nonstandard function strsep()Dan Fandrich2010-06-192-0/+33
| | | | | Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* A few minor portability improvementsDan Fandrich2010-06-195-5/+8
| | | | | Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* sed: trivial code shrink -18 bytesDenys Vlasenko2010-06-191-3/+6
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Merge branch 'master' of git+ssh://vda@busybox.net/var/lib/git/busyboxDenys Vlasenko2010-06-1912-66/+40
|\
| * ash: times builtin: use unsigned type; take free-of-charge moduloDenys Vlasenko2010-06-181-4/+5
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * *: stop defining _GNU_SOURCE in source files, it's in CFLAGS anywayDenys Vlasenko2010-06-185-24/+0
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash: fix unset in standalone modeDenys Vlasenko2010-06-183-0/+4
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash: cosmetics, no code changesDenys Vlasenko2010-06-181-23/+7
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Improve unzip's handling of stream ZIP filesDan Fandrich2010-06-181-4/+9
| | | | | | | | | | | | | | | | | | | | | | Search harder for the ZIP magic numbers at the end of a file by checking 16 KiB from the end instead of just 1 KiB. ZIP files with long comments (such as certain cryptographically signed files) or those sitting in a wrapper could have more than 1 KiB of data after the magic numbers, so they couldn't be read. Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Allow CONFIG_VOLUMEID to be turned offDan Fandrich2010-06-181-3/+3
| | | | | | | | | | Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ignore changes to Kbuild files, they are generatedDan Fandrich2010-06-181-0/+1
| | | | | | | | | | Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * mkfs_ext2: improve comments a bitDenys Vlasenko2010-06-181-3/+6
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * cpio.tests: mention suid bits too, not only sgidDenys Vlasenko2010-06-181-3/+3
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * mkfs_ext2: reuse stringBernhard Reutner-Fischer2010-06-181-1/+1
| | | | | | | | | | | | | | | | | | | | function old new delta mkfs_ext2_main 2376 2378 +2 .rodata 135872 135848 -24 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 2/-24) Total: -22 bytes Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
| * mkfs_ext2: fix handling of -I argumentBernhard Reutner-Fischer2010-06-181-1/+1
| | | | | | | | | | | | -I <unsigned int> but was treated as a character Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* | Revert "sed: trivial code shrink"Denys Vlasenko2010-06-191-6/+3
| | | | | | | | This reverts commit c2c7aa4b0d16049322ca2ebc69ca1093f6944e3a.
* | sed: trivial code shrinkDenys Vlasenko2010-06-191-3/+6
|/ | | | | | | function old new delta sed_main 685 667 -18 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* mktemp: be more compatible: bare "mktemp" creates tempfile in /tmp, not cwdDenys Vlasenko2010-06-181-13/+10
| | | | | | | function old new delta mktemp_main 171 152 -19 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* date: make %N work without -lrt on glibcDenys Vlasenko2010-06-181-1/+6
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* tftp: increase initial retry timeout from 50 to 100 msDenys Vlasenko2010-06-181-1/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* add a comment about sed and suid bitsDenys Vlasenko2010-06-181-0/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* data_extract_all: do not chmod symlink. Closes 2053Denys Vlasenko2010-06-182-26/+35
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* networking/Config.src: make tftp/tftpd-related options less confusing. ↵Denys Vlasenko2010-06-171-0/+3
| | | | | | Closes 2017 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* fix extra bogus files generation in include/config/*Denys Vlasenko2010-06-172-7/+13
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* ubiattach,ubidetach: new appletsBaruch Siach2010-06-161-0/+88
| | | | | | | | | | | | | | | function old new delta ubi_attach_detach_main - 175 +175 packed_usage 27056 27136 +80 applet_names 2262 2282 +20 applet_main 1328 1336 +8 applet_nameofs 664 668 +4 applet_install_loc 166 167 +1 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 5/0 up/down: 288/0) Total: 288 bytes Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* findutils/*: move usage and applet bits to *.c filesDenys Vlasenko2010-06-155-152/+172
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* file rename: TODO_config_nommu -> TEST_config_nommuDenys Vlasenko2010-06-151-0/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: another code shrinkDenys Vlasenko2010-06-151-30/+20
| | | | | | | | function old new delta process0_stdin 117 103 -14 process_stdin 336 314 -22 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: trivial code shrinkDenys Vlasenko2010-06-151-7/+7
| | | | | | | function old new delta xargs_main 807 787 -20 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* rfkill: do not enable by default, it requires new-ish Linux headersDenys Vlasenko2010-06-141-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* scripts/echo.c: remove bb-ismDenys Vlasenko2010-06-141-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: trivial code shrinkDenys Vlasenko2010-06-141-12/+10
| | | | | | | | | function old new delta process_stdin 343 336 -7 process0_stdin 124 117 -7 xargs_main 807 787 -20 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: simplify logicDenys Vlasenko2010-06-141-199/+184
| | | | | | | | | | | | | | Removed double-buffering in a linked list. function old new delta store_param - 56 +56 xargs_main 871 840 -31 process_stdin 458 396 -62 process0_stdin 267 143 -124 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/3 up/down: 56/-217) Total: -161 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: fix accounting of -sNUMDenys Vlasenko2010-06-132-54/+57
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: make -s NUM accept practically unlimited rangeDenys Vlasenko2010-06-131-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* xargs: code shrink -15 bytesDenys Vlasenko2010-06-132-80/+79
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* stat: make output more similar to GNU statSeb2010-06-121-20/+21
| | | | | Signed-off-by: Seb <sbb@tuxfamily.org> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* date: trivial fix - was reading seconds into nanoseconds field! DOHDenys Vlasenko2010-06-121-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* tftp: make message about 512 byte block less confusingDenys Vlasenko2010-06-121-1/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* check-lxdialog.sh: fix helptextBernhard Reutner-Fischer2010-06-111-1/+1
| | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
* utoa: shrinkDenys Vlasenko2010-06-101-15/+29
| | | | | | | | function old new delta itoa_to_buf 20 23 +3 utoa_to_buf 117 101 -16 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* modinfo: needs modutils.oDenys Vlasenko2010-06-091-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>