Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-10 | a bit more IPv6-ization work | Denis Vlasenko | |
syslogd: converted to use it (in -R host:port) | |||
2007-01-10 | Improve generic ipv4+ipv6 support in libbb. | Denis Vlasenko | |
Convert telnet to it. Now this works: telnetd -b [::1]:1234 - bind to IPv6 non-standard port telnet [::1]:1234 - connect to IPv6 non-standard port telnet ::1 1234 - same This does not require ANY ipv6-specific code in applets (no struct sockaddr_in6. In fact, no sockaddr_in, too). | |||
2007-01-09 | Fix typo in usage text by shortening it | Denis Vlasenko | |
2007-01-07 | - a few minor tweaks | Bernhard Reutner-Fischer | |
2007-01-07 | add arp applet - thanks to | Denis Vlasenko | |
"Eric Spakman" <E.Spakman@inter.nl.net> | |||
2007-01-05 | do not expose internal state of [g]zip unpacker. | Denis Vlasenko | |
fix memory leak in inflate_gunzip. | |||
2007-01-04 | - remove duplicate includes | Bernhard Reutner-Fischer | |
2007-01-04 | syslogd: start using bb_common_bufsiz1 instead of stack/malloc | Denis Vlasenko | |
logger: optimize, also use bb_common_bufsiz1 (~40 bytes) tested to eat arbitrarily-sized input at high speed - ok | |||
2007-01-04 | new libbb func: xmalloc_realpath (+ use it where makes sense) | Denis Vlasenko | |
syslogd, logread: add debugging code (disabled) syslogs: drastically smaller bss; fix "-C n" behaviour | |||
2007-01-03 | convert calloc to xzalloc | Denis Vlasenko | |
fix sleep-on-die option | |||
2007-01-03 | extern variable declaration in a .c file is heresy - fixing it | Denis Vlasenko | |
2007-01-03 | introduce small[u]int | Denis Vlasenko | |
fsck_minix: use it for flag variables. 140 bytes saved | |||
2006-12-31 | remove commented out #includes etc | Denis Vlasenko | |
move get_hz to the only caller | |||
2006-12-31 | stop using __u32 etc. uint32_t is there for a reason | Denis Vlasenko | |
2006-12-30 | fixdep.c: avoit doing memcmp in most cases | Denis Vlasenko | |
uidgid_get.c: add forgotten copyright notice pwd/grp/shadow: avoid collisions with libc names | |||
2006-12-30 | fix for uclibc-without-shadow.h compilation | Denis Vlasenko | |
2006-12-28 | fix build without shadow support | Denis Vlasenko | |
2006-12-28 | bb_xget[pw/gr]nam were horribly misnamed - fixed. | Denis Vlasenko | |
uidgid_get -> get_uidgid, add additional param (numeric_ok). Make chown use it. chown: fix "chown user: ...." install: fix incorrect use of bb_xget[pw/gr]nam | |||
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-26 | chattr: bugfixes and size reduction | Denis Vlasenko | |
2006-12-26 | leftover of e2fsck surgery | Denis Vlasenko | |
2006-12-25 | Fix irregular capitalization in usage texts | Denis Vlasenko | |
2006-12-25 | trim help texts a bit more | Denis Vlasenko | |
2006-12-24 | more usage message cleanups | Denis Vlasenko | |
2006-12-24 | Cleanup usage messages (-200 bytes). | Denis Vlasenko | |
Remove busybox_main from applet table since it is called via separate check | |||
2006-12-24 | random tiny size savings | Denis Vlasenko | |
2006-12-24 | missing piece of prev commit: ndelay_off | 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 | less: stop dying on bad regexps, quietly pipe data w/o | Denis Vlasenko | |
user interaction if stdout is not a tty. size optimizations | |||
2006-12-21 | introduce LONE_CHAR (optimized strcmp with one-char string) | Denis Vlasenko | |
2006-12-18 | xfuncs.c: dietlibc actually HAS fdprintf! | Denis Vlasenko | |
platform.h: define strchrnul for dietlibc ash: stop using few non-standard functions | |||
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-17 | fix/shorten some usage strings | Denis Vlasenko | |
2006-12-16 | inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid] | Denis Vlasenko | |
2006-12-16 | s/extern inline/static ATTRIBUTE_ALWAYS_INLINE/g | Denis Vlasenko | |
xstrtou: disallow leading '+' | |||
2006-12-12 | build system: add "release" target | Denis Vlasenko | |
find: support -size N (needed for above) | |||
2006-12-07 | - s/:\t\t/\t/ for two helptexts. | Bernhard Reutner-Fischer | |
2006-12-01 | passwd: made smaller by ~130 bytes. size can go negative | Denis Vlasenko | |
if current trend will continue ;) | |||
2006-11-29 | fix support for globally disabling --long-options. | Denis Vlasenko | |
(disabling them saves ~4K on fully configured bbox) | |||
2006-11-28 | usage: fix few help texts, fix breakage: '\<tab>' | Denis Vlasenko | |
sequence utterly confused cpp :) | |||
2006-11-28 | fix udhcpc help message, take steps to make usage.h less messy | Denis Vlasenko | |
2006-11-27 | udhcpc: convert to getopt32 | Denis Vlasenko | |
2006-11-27 | Provide our own isdigit macro. saves more than 400 bytes. | 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-26 | Closing bug 730. libbb run_parts is using scandir (a GNUism), | Denis Vlasenko | |
and it is used only by run_parts applet, so move it there. Also saved ~30 bytes (prolly gcc autoinlining...). | |||
2006-11-25 | tee: fix bug: argv[-1] is a no-no! | Denis Vlasenko | |
bb_full_fd_action: optimize die_if_ferror: "<applet>: filename" isn't a good err msg, add "..I/O error" | |||
2006-11-25 | small improvements in str -> num convertors | Denis Vlasenko | |