Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-22 | fix double merge | Denis Vlasenko | |
2006-11-22 | telnetd: move generic stuff into libbb. It will make it easy | Denis Vlasenko | |
to make other server applets IPv6-aware too. | |||
2006-11-22 | telnetd: we were having telnetd with is ONLY inetd or ONLY standalone. | Denis Vlasenko | |
What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd. | |||
2006-11-21 | xgethostbyname: more readable | Denis Vlasenko | |
2006-11-21 | bb_INET_default[] is really just a const "default", | Denis Vlasenko | |
nothing INET-specific | |||
2006-11-18 | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | |
2006-11-16 | svlogd: new applet. +9k. Still too big, but it was 12k yesterday. | Denis Vlasenko | |
2006-11-10 | wget: fix error message. | Denis Vlasenko | |
Bad: wget http://127.0.0.1:81/fgdg/Makefile Connecting to 127.0.0.1[127.0.0.1]:81 : HTTP/1.0 404 Not Foundror 404 Not Found Good: wget http://127.0.0.1:81/fgdg/Makefile Connecting to 127.0.0.1[127.0.0.1]:81 get: server returned error: HTTP/1.0 404 Not Found nslookup: fix my mistake applets: make Bernhard Fischer <rep.nop@aon.at> happy :) | |||
2006-11-05 | rename: compare_string_array -> index_in_str_array | Denis Vlasenko | |
introduce index_in_substr_array and use it in iproute2 | |||
2006-11-05 | smart_ulltoa5: make available in libbb | Denis Vlasenko | |
2006-11-05 | replace /proc scanning code by more versatile one. | Denis Vlasenko | |
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 | |||
2006-11-05 | top: improve CPU% calculation | Denis Vlasenko | |
style fixes | |||
2006-11-01 | Unneeded code removed, usused field "unsigned pscpu" removed | Denis Vlasenko | |
2006-11-01 | PID should be stored in pid_t, not int or long. | Denis Vlasenko | |
find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead. | |||
2006-11-01 | #if CONFIG_xxx -> #if ENABLE_xxx | Denis Vlasenko | |
2006-10-31 | reads: fix bug 1078 | Denis Vlasenko | |
2006-10-31 | login: re-enable Ctrl-^C before execing shell. | Denis Vlasenko | |
2006-10-31 | dd: fix bugs: always assumed conv=sync, died on write errors | Denis Vlasenko | |
w/o perror and statictics. Several small improvements | |||
2006-10-29 | find: a lot more compliant to 'standard' find | Denis Vlasenko | |
(we were not respecting order of actions!). Add -o and -a handling. | |||
2006-10-28 | ls: cleanup part 1 | Denis Vlasenko | |
2006-10-27 | recursive_action: add depth param | Denis Vlasenko | |
chmod: match coreutils versus following links | |||
2006-10-27 | recursive_action: preparatory changes. will introduce "int level". | Denis Vlasenko | |
2006-10-27 | modprobe: reformat to match bbox style | Denis Vlasenko | |
2006-10-27 | reshuffle libbb.h contents so that order of decls makes sense | Denis Vlasenko | |
Found bad typo in largefile support :) | |||
2006-10-27 | get_terminal_width_height: do not pass insanely large values | Denis Vlasenko | |
2006-10-27 | last nail into error_msg() (de)capitalization | Denis Vlasenko | |
2006-10-27 | As usual, I forgot "svn del"... | Denis Vlasenko | |
2006-10-26 | ...and yet another small fix. Ouch... | Denis Vlasenko | |
2006-10-26 | rename functions to more understandable names | Denis Vlasenko | |
2006-10-26 | remove bb_printf and the like | Denis Vlasenko | |
2006-10-26 | xconnect is non-conforming to "xfunc like libc" rule. Fixing | Denis Vlasenko | |
2006-10-25 | wget: wget $'-\207' ... should not be allowed to work. ever. :) | Denis Vlasenko | |
So fix wget & getopt32. Also fix multiple --header options order: add and use rev_llist. | |||
2006-10-21 | cp: add support for -s, -l. Fix free(nonmalloc) bug. | Denis Vlasenko | |
Add doc on POSIX's rules on -i and -f (insane!). ln: make "ln dangling_symlink new_link" work. | |||
2006-10-20 | readlink: do not emit errors if file doesnt not exist / not a link | Denis Vlasenko | |
getopt32: add =N support | |||
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |
2006-10-16 | nc: fix 2 my own buglets, and few someone else's too. | Denis Vlasenko | |
2006-10-14 | grep: add support for -r | Denis Vlasenko | |
2006-10-14 | add open_read_close() and similar stuff | Denis Vlasenko | |
2006-10-12 | xread/write can use full_read/write (smaller code) | Denis Vlasenko | |
2006-10-12 | bb_get_[chomped]line_from_file wasn't descriptive enough. | Denis Vlasenko | |
Renaming... | |||
2006-10-12 | cut, mount: small improvements | Denis Vlasenko | |
2006-10-12 | small style fixes | Denis Vlasenko | |
2006-10-12 | execable: no need to check getenv for NULL, it works anyway. | Denis Vlasenko | |
2006-10-12 | execable.c: forgot to do "svn add" again... | Denis Vlasenko | |
2006-10-11 | ifupdown: stop emitting annoying/misleading error messages. | Denis Vlasenko | |
Patch by Gabriel Somlo <somlo at cmu.edu> | |||
2006-10-11 | nmeter: new applet. ~4k | Denis Vlasenko | |
Fix build proble on x86_64 | |||
2006-10-10 | od: provide full-blown od from coreutils if CONFIG_DESKTOP | Denis Vlasenko | |
2006-10-10 | fixes from Vladimir Dronnikov <dronnikov@gmail.ru> | Denis Vlasenko | |
2006-10-08 | start_stop_daemon: add -N <nice> compat | Denis Vlasenko | |
[re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code | |||
2006-10-08 | correct largefile support, add comments about it. | Denis Vlasenko | |