Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-29 | fix support for globally disabling --long-options. | Denis Vlasenko | |
(disabling them saves ~4K on fully configured bbox) | |||
2006-11-28 | od: sometime ago I landed BIG od implementation | Denis Vlasenko | |
from coreutils. My fault. This commit contains cleanups and size reductions. | |||
2006-11-28 | fix bug in new str -> num convertors | Denis Vlasenko | |
2006-11-28 | usage: fix few help texts, fix breakage: '\<tab>' | Denis Vlasenko | |
sequence utterly confused cpp :) | |||
2006-11-28 | udhcpc: fix my breakage | Denis Vlasenko | |
2006-11-28 | fix udhcpc help message, take steps to make usage.h less messy | Denis Vlasenko | |
2006-11-27 | do not overflow ifr_name. maybe it was safe in some places, | Denis Vlasenko | |
but not everywhere. err to the safe side. | |||
2006-11-27 | udhcpc: convert to getopt32 | Denis Vlasenko | |
2006-11-27 | tar: fix misplaced --exclude long option definition | Denis Vlasenko | |
2006-11-27 | Closing bug 1040: | Denis Vlasenko | |
The "quiet" option is quietly (hah) ignored. It should be passed through to the mount() syscall in the comma separated list of options. I found the problem with the vfat/msdos filesystems, which uses a quiet option to override some complaints and errors. | |||
2006-11-27 | erase_mtab: do not limit ourself to 40 mtab entries | Denis Vlasenko | |
2006-11-27 | fix remaining survivors of the return(a) cleanup | Denis Vlasenko | |
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-27 | byteswap ops had extra mask ops - removed | Denis Vlasenko | |
2006-11-27 | svn add bb_strtonum.c :( | Denis Vlasenko | |
2006-11-27 | Provide our own isdigit macro. saves more than 400 bytes. | Denis Vlasenko | |
2006-11-27 | safe_strtoXX interface proved to be a bit unconvenient. | Denis Vlasenko | |
Remove it, introduce saner bb_strtoXX. Saved ~350 bytes. | |||
2006-11-27 | - minor shrinkage | Bernhard Reutner-Fischer | |
text data bss dec hex filename 773 0 80 853 355 vlock.o.orig 766 0 80 846 34e vlock.o | |||
2006-11-27 | ifconfig: do not try to continue on errors. not much sence in doing that | Denis Vlasenko | |
IMHO, but requires extra code. | |||
2006-11-27 | deluser: the same code, but a bit less obfuscated. | Denis Vlasenko | |
2006-11-27 | deluser: size reduction by 60 bytes. | Denis Vlasenko | |
patch from Tito <farmatito@tiscali.it> | |||
2006-11-26 | added gcc flag which is needed for ULLONG_MAX to appear | Denis Vlasenko | |
on Tito's box | |||
2006-11-26 | Closing bug 730. libbb run_parts is using scandir (a GNUism), | Denis Vlasenko | |
and it is used only by run_parts applet, so move it there. Also saved ~30 bytes (prolly gcc autoinlining...). | |||
2006-11-26 | added small doc about tar 'pax header' format | Denis Vlasenko | |
2006-11-26 | sort: two small optimizations | Denis Vlasenko | |
2006-11-26 | sort: reformat entire file wrt style. | Denis Vlasenko | |
fix single obvious bug: right hand was 0 here: flags & (FLAG_b&FLAG_d&FLAG_f&FLAG_i&FLAG_bb) fixed to use | | |||
2006-11-26 | small fixes: | Denis Vlasenko | |
fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. | |||
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! | |||
2006-11-25 | tar: add support for FEATURE_TAR_GNU_EXTENSIONS so than we can save | Denis Vlasenko | |
long names now. We were able to read such tars, but not create. +275 bytes. Without FEATURE_TAR_GNU_EXTENSIONS: -25 bytes. We still cannot unpack Linux kernels, but not for long ;) | |||
2006-11-25 | tee: fix bug: argv[-1] is a no-no! | Denis Vlasenko | |
bb_full_fd_action: optimize die_if_ferror: "<applet>: filename" isn't a good err msg, add "..I/O error" | |||
2006-11-25 | tar: small fix and small optimization | Denis Vlasenko | |
2006-11-25 | small improvements in str -> num convertors | Denis Vlasenko | |
2006-11-25 | tar: abort if tarring up file larger that 64Gb | Denis Vlasenko | |
(otherwise we will produce garbled tarfile) | |||
2006-11-25 | dd: support >2gb values for seek, skip, count | Denis Vlasenko | |
2006-11-25 | regularize str -> num convertors | Denis Vlasenko | |
2006-11-24 | small optimization | Denis Vlasenko | |
2006-11-24 | tar: fix multiple -t and/or -v options handling. | Denis Vlasenko | |
do not process list of files to tar up in reverse order. | |||
2006-11-24 | tar: sanitize option handling | Denis Vlasenko | |
2006-11-24 | tar: buglet fix | Denis Vlasenko | |
2006-11-24 | tar: fix and sanitize handling of long filenames/linknames | Denis Vlasenko | |
(GNU extensions 'K' and 'L'). We correctly handle them when untarring now, but unfortunately we still don't use them when tarring! That stupid 100 char limit is still there! The biggest problem is that we don't support 'pax' tar format. Linux kernel tarballs are in this format... shame | |||
2006-11-24 | hunt down improper include <>, make mkswap output 4Gb+ friendly | Denis Vlasenko | |
2006-11-24 | svn add makedev.c. Forgot as usual... :( | Denis Vlasenko | |
2006-11-24 | tar: small fixes: | Denis Vlasenko | |
* size-optimize mapping code * kill double close | |||
2006-11-24 | tar: cache [ug]id->username/groupname mappings. Cuts down amount | Denis Vlasenko | |
of open/read/close of /etc/passwd and /etc/group dramatically (we were rereading those for each untarred file!!!) | |||
2006-11-24 | tar: cry murder and bail out if file shrinks under us while we tar it up | Denis Vlasenko | |
2006-11-24 | glibc makedev() is a large inline. Save 700+ bytes by wrapping it | Denis Vlasenko | |
into a function. | |||
2006-11-24 | header_verbose_list: stop truncating file size in listing | 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 |