Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid] | Denis Vlasenko | 2006-12-16 | 1 | -0/+8 | |
| | ||||||
* | build system: add "release" target | Denis Vlasenko | 2006-12-12 | 1 | -10/+11 | |
| | | | | find: support -size N (needed for above) | |||||
* | passwd: made smaller by ~130 bytes. size can go negative | Denis Vlasenko | 2006-12-01 | 1 | -1/+1 | |
| | | | | if current trend will continue ;) | |||||
* | fix support for globally disabling --long-options. | Denis Vlasenko | 2006-11-29 | 1 | -1/+3 | |
| | | | | (disabling them saves ~4K on fully configured bbox) | |||||
* | 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 | 1 | -22/+11 | |
| | | | | | 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 | 1 | -6/+0 | |
| | ||||||
* | regularize str -> num convertors | Denis Vlasenko | 2006-11-25 | 1 | -34/+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 | |||||
* | 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 | 1 | -0/+1 | |
| | | | | | 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 | 1 | -0/+2 | |
| | | | | nothing INET-specific | |||||
* | insmod_ng_main: -80 bytes. Stopp mmapping, use xmalloc_open_read_close(). | Denis Vlasenko | 2006-11-21 | 1 | -2/+1 | |
| | ||||||
* | svlogd: new applet. +9k. Still too big, but it was 12k yesterday. | Denis Vlasenko | 2006-11-16 | 1 | -0/+2 | |
| | ||||||
* | 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 | |||||
* | 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 | |||||
* | 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 | |
| | ||||||
* | 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: 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. | |||||
* | build system: (try to) get rid of bb_config.h hack | Denis Vlasenko | 2006-10-19 | 1 | -1/+1 | |
| | ||||||
* | grep: add support for -r | Denis Vlasenko | 2006-10-14 | 1 | -2/+2 | |
| | ||||||
* | add open_read_close() and similar stuff | Denis Vlasenko | 2006-10-14 | 1 | -8/+15 | |
| | ||||||
* | bb_get_[chomped]line_from_file wasn't descriptive enough. | Denis Vlasenko | 2006-10-12 | 1 | -2/+3 | |
| | | | | Renaming... | |||||
* | ifupdown: stop emitting annoying/misleading error messages. | Denis Vlasenko | 2006-10-11 | 1 | -0/+4 | |
| | | | | Patch by Gabriel Somlo <somlo at cmu.edu> | |||||
* | od: provide full-blown od from coreutils if CONFIG_DESKTOP | Denis Vlasenko | 2006-10-10 | 1 | -0/+2 | |
| | ||||||
* | fixes from Vladimir Dronnikov <dronnikov@gmail.ru> | Denis Vlasenko | 2006-10-10 | 1 | -3/+8 | |
| | ||||||
* | start_stop_daemon: add -N <nice> compat | Denis Vlasenko | 2006-10-08 | 1 | -0/+1 | |
| | | | | | [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 | 1 | -22/+48 | |
| | ||||||
* | attempt to regularize atoi mess. | Denis Vlasenko | 2006-10-08 | 1 | -23/+45 | |
| | ||||||
* | dd: make it recognize not only 'k' but 'K' too; | Denis Vlasenko | 2006-10-07 | 1 | -0/+25 | |
| | | | | make it (partially) CONFIG_LFS-aware | |||||
* | dnsd fix; option_mask32 added. dnsd needs more love. | Denis Vlasenko | 2006-10-06 | 1 | -1/+2 | |
| | ||||||
* | httpd: add -u user[:grp] support | Denis Vlasenko | 2006-10-05 | 1 | -0/+7 | |
| | ||||||
* | build system overhaul | Denis Vlasenko | 2006-10-05 | 1 | -1/+0 | |
| | ||||||
* | bb_applet_name -> applet_name | Denis Vlasenko | 2006-10-03 | 1 | -1/+1 | |
| |