Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | udhcpc: convert to getopt32 | Denis Vlasenko | 2006-11-27 | 1 | -0/+9 | |
| | ||||||
* | Provide our own isdigit macro. saves more than 400 bytes. | Denis Vlasenko | 2006-11-27 | 1 | -1/+5 | |
| | ||||||
* | safe_strtoXX interface proved to be a bit unconvenient. | Denis Vlasenko | 2006-11-27 | 2 | -22/+62 | |
| | | | | | Remove it, introduce saner bb_strtoXX. Saved ~350 bytes. | |||||
* | Closing bug 730. libbb run_parts is using scandir (a GNUism), | Denis Vlasenko | 2006-11-26 | 1 | -1/+0 | |
| | | | | | and it is used only by run_parts applet, so move it there. Also saved ~30 bytes (prolly gcc autoinlining...). | |||||
* | tee: fix bug: argv[-1] is a no-no! | Denis Vlasenko | 2006-11-25 | 1 | -1/+1 | |
| | | | | | bb_full_fd_action: optimize die_if_ferror: "<applet>: filename" isn't a good err msg, add "..I/O error" | |||||
* | small improvements in str -> num convertors | Denis Vlasenko | 2006-11-25 | 2 | -6/+12 | |
| | ||||||
* | regularize str -> num convertors | Denis Vlasenko | 2006-11-25 | 2 | -34/+95 | |
| | ||||||
* | tar: sanitize option handling | Denis Vlasenko | 2006-11-24 | 1 | -1/+1 | |
| | ||||||
* | tar: cache [ug]id->username/groupname mappings. Cuts down amount | Denis Vlasenko | 2006-11-24 | 1 | -0/+1 | |
| | | | | | of open/read/close of /etc/passwd and /etc/group dramatically (we were rereading those for each untarred file!!!) | |||||
* | glibc makedev() is a large inline. Save 700+ bytes by wrapping it | Denis Vlasenko | 2006-11-24 | 1 | -0/+6 | |
| | | | | into a function. | |||||
* | header_verbose_list: stop truncating file size in listing | Denis Vlasenko | 2006-11-24 | 1 | -5/+6 | |
| | ||||||
* | tar: | Denis Vlasenko | 2006-11-24 | 1 | -1/+0 | |
| | | | | | | | | | * 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 | |||||
* | introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd), | Denis Vlasenko | 2006-11-22 | 1 | -0/+2 | |
| | | | | | use them where appropriate. 200 bytes saved | |||||
* | - revert r15563 (pull current version of taskset off the busybox_scratch branch) | Bernhard Reutner-Fischer | 2006-11-22 | 2 | -0/+18 | |
| | ||||||
* | telnetd: move generic stuff into libbb. It will make it easy | Denis Vlasenko | 2006-11-22 | 1 | -0/+12 | |
| | | | | to make other server applets IPv6-aware too. | |||||
* | telnetd: we were having telnetd with is ONLY inetd or ONLY standalone. | Denis Vlasenko | 2006-11-22 | 2 | -8/+11 | |
| | | | | | What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd. | |||||
* | bb_INET_default[] is really just a const "default", | Denis Vlasenko | 2006-11-21 | 2 | -5/+3 | |
| | | | | nothing INET-specific | |||||
* | - add 'ip rule' support. First take.. | Bernhard Reutner-Fischer | 2006-11-21 | 2 | -3/+15 | |
| | | | | | text data bss dec hex filename 2999 0 0 2999 bb7 networking/libiproute/iprule.o | |||||
* | insmod_ng_main: -80 bytes. Stopp mmapping, use xmalloc_open_read_close(). | Denis Vlasenko | 2006-11-21 | 1 | -2/+1 | |
| | ||||||
* | dhcprelay: new applet | Denis Vlasenko | 2006-11-20 | 2 | -0/+11 | |
| | ||||||
* | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | 2006-11-18 | 1 | -10/+10 | |
| | ||||||
* | nc: fix --help text | Denis Vlasenko | 2006-11-18 | 1 | -6/+2 | |
| | ||||||
* | add -Wundef, fix uncovered bugs | Denis Vlasenko | 2006-11-17 | 1 | -1/+1 | |
| | ||||||
* | runit: add runsv, runsvdir and sv. Oh yes. | Denis Vlasenko | 2006-11-17 | 2 | -0/+19 | |
| | | | | It even seems to work. +11K. :( | |||||
* | httpd: reduce ifdef forest. comment out redundant PATH setting | Denis Vlasenko | 2006-11-16 | 1 | -1/+1 | |
| | ||||||
* | httpd: add -i (inetd) and -f (foreground) otions. | Denis Vlasenko | 2006-11-16 | 1 | -2/+5 | |
| | | | | | -i makes possible to run httpd in both inetd and standalone mode without recompile (or need to have two different binaries) | |||||
* | svlogd: new applet. +9k. Still too big, but it was 12k yesterday. | Denis Vlasenko | 2006-11-16 | 3 | -0/+10 | |
| | ||||||
* | rename: compare_string_array -> index_in_str_array | Denis Vlasenko | 2006-11-05 | 1 | -1/+2 | |
| | | | | | introduce index_in_substr_array and use it in iproute2 | |||||
* | usage.h: stop using ancient USAGE_xxx (we have USE_xx now) | Denis Vlasenko | 2006-11-05 | 1 | -34/+13 | |
| | ||||||
* | ps: implement POSIX-like options, most notably -o | Denis Vlasenko | 2006-11-05 | 1 | -0/+15 | |
| | | | | (activated by CONFIG_DESKTOP) | |||||
* | smart_ulltoa5: make available in libbb | Denis Vlasenko | 2006-11-05 | 1 | -0/+1 | |
| | ||||||
* | replace /proc scanning code by more versatile one. | Denis Vlasenko | 2006-11-05 | 1 | -12/+36 | |
| | | | | | | | Use it where appropriate. Stop scanning /etc/passwd *for every process*!!! (uid->username) top: reduce memory usage - we won't save unneeded fields from /proc info anymore. Downside: ~+250 bytes of code | |||||
* | top: improve CPU% calculation | Denis Vlasenko | 2006-11-05 | 1 | -2/+2 | |
| | | | | style fixes | |||||
* | Unneeded code removed, usused field "unsigned pscpu" removed | Denis Vlasenko | 2006-11-01 | 1 | -4/+3 | |
| | ||||||
* | PID should be stored in pid_t, not int or long. | Denis Vlasenko | 2006-11-01 | 1 | -4/+3 | |
| | | | | | find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead. | |||||
* | ls: cleanup part 1 | Denis Vlasenko | 2006-10-28 | 1 | -4/+4 | |
| | ||||||
* | recursive_action: add depth param | Denis Vlasenko | 2006-10-27 | 1 | -4/+4 | |
| | | | | chmod: match coreutils versus following links | |||||
* | chgrp: just call chown! :) | Denis Vlasenko | 2006-10-27 | 1 | -2/+8 | |
| | ||||||
* | chown: add -vcf support if CONFIG_DESKTOP | Denis Vlasenko | 2006-10-27 | 1 | -2/+7 | |
| | | | | chmod: stop following symlinks | |||||
* | chmod: support -vcf if CONFIG_DESKTOP | Denis Vlasenko | 2006-10-27 | 1 | -2/+7 | |
| | ||||||
* | reshuffle libbb.h contents so that order of decls makes sense | Denis Vlasenko | 2006-10-27 | 1 | -268/+250 | |
| | | | | Found bad typo in largefile support :) | |||||
* | Fix minor breakage in previous commit | Denis Vlasenko | 2006-10-26 | 1 | -2/+2 | |
| | ||||||
* | rename functions to more understandable names | Denis Vlasenko | 2006-10-26 | 1 | -15/+17 | |
| | ||||||
* | remove bb_printf and the like | Denis Vlasenko | 2006-10-26 | 1 | -13/+4 | |
| | ||||||
* | xconnect is non-conforming to "xfunc like libc" rule. Fixing | Denis Vlasenko | 2006-10-26 | 1 | -1/+3 | |
| | ||||||
* | - revert r16191; re-add resize() applet. | Bernhard Reutner-Fischer | 2006-10-25 | 2 | -0/+6 | |
| | | | | | | | text data bss dec hex filename 288 0 0 288 120 console-tools/_resize.o.gcc-2.95 258 0 0 258 102 console-tools/_resize.o.gcc-3.3 252 0 0 252 fc console-tools/_resize.o.gcc-3.4 | |||||
* | wget: wget $'-\207' ... should not be allowed to work. ever. :) | Denis Vlasenko | 2006-10-25 | 1 | -1/+1 | |
| | | | | | So fix wget & getopt32. Also fix multiple --header options order: add and use rev_llist. | |||||
* | cp: update help text | Denis Vlasenko | 2006-10-22 | 1 | -4/+5 | |
| | ||||||
* | cp: add support for -s, -l. Fix free(nonmalloc) bug. | Denis Vlasenko | 2006-10-21 | 1 | -1/+4 | |
| | | | | | 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 | -3/+4 | |
| |