Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | style cleanup: return(a) -> return a, part 2 | Denis Vlasenko | 2006-11-27 | 2 | -9/+9 | |
| | ||||||
* | style cleanup: return(a) -> return a, part 1 | Denis Vlasenko | 2006-11-27 | 5 | -27/+27 | |
| | ||||||
* | Provide our own isdigit macro. saves more than 400 bytes. | Denis Vlasenko | 2006-11-27 | 3 | -9/+7 | |
| | ||||||
* | safe_strtoXX interface proved to be a bit unconvenient. | Denis Vlasenko | 2006-11-27 | 2 | -7/+26 | |
| | | | | | Remove it, introduce saner bb_strtoXX. Saved ~350 bytes. | |||||
* | sort: two small optimizations | Denis Vlasenko | 2006-11-26 | 1 | -9/+10 | |
| | ||||||
* | sort: reformat entire file wrt style. | Denis Vlasenko | 2006-11-26 | 1 | -182/+215 | |
| | | | | | | fix single obvious bug: right hand was 0 here: flags & (FLAG_b&FLAG_d&FLAG_f&FLAG_i&FLAG_bb) fixed to use | | |||||
* | small fixes: | Denis Vlasenko | 2006-11-26 | 1 | -1/+1 | |
| | | | | | | fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. | |||||
* | tee: fix bug: argv[-1] is a no-no! | Denis Vlasenko | 2006-11-25 | 1 | -38/+38 | |
| | | | | | bb_full_fd_action: optimize die_if_ferror: "<applet>: filename" isn't a good err msg, add "..I/O error" | |||||
* | dd: support >2gb values for seek, skip, count | Denis Vlasenko | 2006-11-25 | 1 | -4/+10 | |
| | ||||||
* | header_verbose_list: stop truncating file size in listing | Denis Vlasenko | 2006-11-24 | 2 | -4/+4 | |
| | ||||||
* | md5sum: make -c grok formats like "68b329da9893e34099c7d8ad5cb9c940 *foo". | Denis Vlasenko | 2006-11-23 | 1 | -20/+24 | |
| | | | | Also eradicate 95 bytes of bloat. | |||||
* | httpd: fix cgi-bin/index.cgi support, add example of it, | Denis Vlasenko | 2006-11-21 | 1 | -31/+37 | |
| | | | | | stat: fix end-of-line if format is specified (wasn't printing it), fix %z (time) format to match coreutils 6.3 | |||||
* | httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net! | Denis Vlasenko | 2006-11-21 | 3 | -6/+5 | |
| | ||||||
* | mkdir: style fix | Denis Vlasenko | 2006-11-19 | 1 | -5/+5 | |
| | ||||||
* | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | 2006-11-18 | 5 | -6/+6 | |
| | ||||||
* | - end may be used uninitialized. | Bernhard Reutner-Fischer | 2006-11-17 | 1 | -1/+2 | |
| | | | | - TODO: should eventually use skip_whitespace there | |||||
* | mostly style fixes | Denis Vlasenko | 2006-11-01 | 1 | -1/+1 | |
| | ||||||
* | dd: fix bugs: always assumed conv=sync, died on write errors | Denis Vlasenko | 2006-10-31 | 1 | -50/+69 | |
| | | | | w/o perror and statictics. Several small improvements | |||||
* | ls: silly comment fixes | Denis Vlasenko | 2006-10-28 | 1 | -9/+9 | |
| | ||||||
* | chmod: typo in comments | Denis Vlasenko | 2006-10-28 | 1 | -8/+8 | |
| | ||||||
* | ls: cleanup part 2. ifdef forest is much less scary now :) | Denis Vlasenko | 2006-10-28 | 2 | -198/+148 | |
| | ||||||
* | ls: cleanup part 1 | Denis Vlasenko | 2006-10-28 | 2 | -271/+181 | |
| | ||||||
* | recursive_action: add depth param | Denis Vlasenko | 2006-10-27 | 3 | -28/+84 | |
| | | | | chmod: match coreutils versus following links | |||||
* | chgrp: just call chown! :) | Denis Vlasenko | 2006-10-27 | 2 | -39/+11 | |
| | ||||||
* | chown: add -vcf support if CONFIG_DESKTOP | Denis Vlasenko | 2006-10-27 | 2 | -25/+64 | |
| | | | | chmod: stop following symlinks | |||||
* | chmod: support -vcf if CONFIG_DESKTOP | Denis Vlasenko | 2006-10-27 | 1 | -53/+44 | |
| | ||||||
* | reshuffle libbb.h contents so that order of decls makes sense | Denis Vlasenko | 2006-10-27 | 3 | -7/+7 | |
| | | | | Found bad typo in largefile support :) | |||||
* | get_terminal_width_height: do not pass insanely large values | Denis Vlasenko | 2006-10-27 | 1 | -1/+0 | |
| | ||||||
* | last nail into error_msg() (de)capitalization | Denis Vlasenko | 2006-10-27 | 2 | -12/+12 | |
| | ||||||
* | ...and yet another small fix. Ouch... | Denis Vlasenko | 2006-10-26 | 1 | -2/+2 | |
| | ||||||
* | rename functions to more understandable names | Denis Vlasenko | 2006-10-26 | 11 | -19/+18 | |
| | ||||||
* | remove bb_printf and the like | Denis Vlasenko | 2006-10-26 | 30 | -99/+103 | |
| | ||||||
* | silly size savings and capitalization fixes | Denis Vlasenko | 2006-10-26 | 2 | -2/+2 | |
| | ||||||
* | watch: fix warning | Denis Vlasenko | 2006-10-23 | 1 | -1/+3 | |
| | | | | getty: fix breakage; fix excessive stack usage | |||||
* | cp: add support for -s, -l. Fix free(nonmalloc) bug. | Denis Vlasenko | 2006-10-21 | 4 | -74/+58 | |
| | | | | | Add doc on POSIX's rules on -i and -f (insane!). ln: make "ln dangling_symlink new_link" work. | |||||
* | watch: execute command thru shell, not fork/exec. Other fixes | Denis Vlasenko | 2006-10-20 | 1 | -29/+50 | |
| | ||||||
* | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | 2006-10-20 | 6 | -8/+8 | |
| | ||||||
* | add open_read_close() and similar stuff | Denis Vlasenko | 2006-10-14 | 1 | -3/+3 | |
| | ||||||
* | bb_get_[chomped]line_from_file wasn't descriptive enough. | Denis Vlasenko | 2006-10-12 | 5 | -7/+7 | |
| | | | | Renaming... | |||||
* | cut, mount: small improvements | Denis Vlasenko | 2006-10-12 | 2 | -20/+15 | |
| | ||||||
* | od: provide full-blown od from coreutils if CONFIG_DESKTOP | Denis Vlasenko | 2006-10-10 | 2 | -4/+1600 | |
| | ||||||
* | start_stop_daemon: add -N <nice> compat | Denis Vlasenko | 2006-10-08 | 1 | -31/+13 | |
| | | | | | [re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code | |||||
* | correct largefile support, add comments about it. | Denis Vlasenko | 2006-10-08 | 3 | -14/+15 | |
| | ||||||
* | attempt to regularize atoi mess. | Denis Vlasenko | 2006-10-08 | 17 | -108/+83 | |
| | ||||||
* | dd: make it recognize not only 'k' but 'K' too; | Denis Vlasenko | 2006-10-07 | 1 | -14/+17 | |
| | | | | make it (partially) CONFIG_LFS-aware | |||||
* | httpd: add -u user[:grp] support | Denis Vlasenko | 2006-10-05 | 1 | -13/+13 | |
| | ||||||
* | build system overhaul | Denis Vlasenko | 2006-10-05 | 9 | -355/+245 | |
| | ||||||
* | bb_applet_name -> applet_name | Denis Vlasenko | 2006-10-03 | 2 | -1/+2 | |
| | ||||||
* | getopt_ulflags -> getopt32. | Denis Vlasenko | 2006-10-03 | 36 | -67/+65 | |
| | | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||||
* | rename bb_default_error_retval -> xfunc_error_retval | Denis Vlasenko | 2006-10-03 | 6 | -8/+8 | |
| |