Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-12-26 | merge post-1.3.0 fixes | Denis Vlasenko | |
2006-12-26 | properly export externs thru *.h files | Denis Vlasenko | |
2006-12-26 | style fixes | Denis Vlasenko | |
last xcalloc replaced by xzalloc | |||
2006-12-23 | use xbind, xconnect where appropriate. | Denis Vlasenko | |
small edits to arping | |||
2006-12-22 | remove useless casts (type*) xzalloc(...) | Denis Vlasenko | |
2006-12-22 | Always use /usr/share/udhcpc/default.script ([/usr] was depending on CONFIG_xx) | Denis Vlasenko | |
2006-12-22 | tar et al: die if bb_copyfd_size copies less than asked for. | Denis Vlasenko | |
(we have bb_copyfd_exact_size now for that kind of usage) | |||
2006-12-21 | introduce LONE_CHAR (optimized strcmp with one-char string) | Denis Vlasenko | |
2006-12-19 | remove casts from xmalloc() | Denis Vlasenko | |
2006-12-19 | ifupdown: do not print and/or execute empty commands (""). | Denis Vlasenko | |
2006-12-19 | ifupdown: parse() returning NULL and returning "" is not the same, | Denis Vlasenko | |
it turned out! wow... okay, fixing my buglet... | |||
2006-12-19 | u_short, ulong exterminated | Denis Vlasenko | |
fdiskXXX: add a bit of sanity (not enough by far) | |||
2006-12-19 | - use xlisten/xsocket some more. Saves .25 kB | Bernhard Reutner-Fischer | |
2006-12-18 | nc: add missing cast | Denis Vlasenko | |
xfuncs: add dprintf for dietlibc | |||
2006-12-18 | A bunch of defined(__GLIBC__) added. static-linking warning expanded | Denis Vlasenko | |
2006-12-18 | ifupdown: strlen(NULL) is a no-no, fixed. Also few micro-optimizations | Denis Vlasenko | |
2006-12-17 | httpd: we don't have FEATURE_HTTPD_WITHOUT_INETD anymore, | Denis Vlasenko | |
remove it from Config.in | |||
2006-12-17 | tftp: corrupted input packets were killing retransmits - fixed | Denis Vlasenko | |
2006-12-16 | inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid] | Denis Vlasenko | |
2006-12-16 | wget: smallish optimization | Denis Vlasenko | |
2006-12-15 | re-applying first post-1.3.x change | Denis Vlasenko | |
version change to 1.4.0.svn | |||
2006-12-15 | back out last change - need to make busybox-1_3-stable branch first | Denis Vlasenko | |
2006-12-14 | - table support for ip route | Bernhard Reutner-Fischer | |
2006-12-07 | - Proposed fix to make aliases work (with uClibc-current). | Bernhard Reutner-Fischer | |
See comment in the patch about the change introduced in r16342. | |||
2006-12-07 | - Improve wording in error message. | Bernhard Reutner-Fischer | |
2006-12-04 | - make sure we pickup the correct defines. Guards against 2.6.19 kernel-headers. | Bernhard Reutner-Fischer | |
2006-12-01 | - provide central knob to turn off RPC related options. | Bernhard Reutner-Fischer | |
2006-11-29 | httpd: fix decode of '/' when called via -d | Denis Vlasenko | |
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 | udhcpc: fix my breakage | 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 | 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 | safe_strtoXX interface proved to be a bit unconvenient. | Denis Vlasenko | |
Remove it, introduce saner bb_strtoXX. Saved ~350 bytes. | |||
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-26 | small fixes: | Denis Vlasenko | |
fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. | |||
2006-11-24 | header_verbose_list: stop truncating file size in listing | Denis Vlasenko | |
2006-11-23 | ifupdown: | Denis Vlasenko | |
ifconfig said to set iface up before it processes hw %hwaddress%, which then of course fails. Thus we run two separate ifconfig | |||
2006-11-23 | ifupdown: save some 100+ bytes of code in addstr() | Denis Vlasenko | |
2006-11-23 | wget: -O - still outputs progressbar (to stderr) | Denis Vlasenko | |
Noticed dead code. -100 bytes. | |||
2006-11-23 | add "wpad" DHCP option. Spotted some optimization opportunities: -80 bytes | Denis Vlasenko | |
2006-11-22 | introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd), | Denis Vlasenko | |
use them where appropriate. 200 bytes saved | |||
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: if FEATURE_IPV6 is on, telnet will NOT work on IPv4 | Denis Vlasenko | |
which is kind of stupid | |||
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-22 | #if HAVE_AFINET6 -> #ifdef HAVE_AFINET6 | Denis Vlasenko | |
2006-11-21 | httpd: comment on QUERY_STRING | Denis Vlasenko | |