aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-03-19telnet: finish style cleanup bitsDenis Vlasenko
2007-03-19telnet: someone tried to do data optimization before me. Complete it.Denis Vlasenko
text data bss dec hex filename 2558 0 404 2962 b92 busybox.t2/networking/telnet.o 2542 0 0 2542 9ee busybox.t3/networking/telnet.o
2007-03-19fdisk: bb_common_bufsiz1 is too small for globals on 64-bit CPUDenis Vlasenko
2007-03-19fdisk: get rid of _() macro.Denis Vlasenko
Shorten some messages. Stop using stderr - anyone who tries to use fdisk no-interactively is "strange" anyway. Improve storage handling in bsd module. text data bss dec hex filename 728112 1488 33788 763388 ba5fc busybox.t0/busybox 727248 1488 33372 762108 ba0fc busybox.t1/busybox
2007-03-19Kim B. Heino writes:Bernhard Reutner-Fischer
When installing a new package with dpkg dependencies are checked correctly. But when I try to update an existing package, the dependencies are checked against the old package, not against new package. Thus the new package can break dependencies.
2007-03-18make clean deletes .kernelrelease nowDenis Vlasenko
trylink deleted empty linker stderr on success
2007-03-18include <stddef.h> so that ptrdiff_t is again availableDenis Vlasenko
2007-03-18Announce 1.4.2Denis Vlasenko
2007-03-18mkfs_minix: remove older, less efficient bss reduction trickDenis Vlasenko
2007-03-18fdisk: move 2k ptes[] array into bb_common_bufsiz1Denis Vlasenko
2007-03-18fix inadvertently leaked PWD_BUFFER_SIZEDenis Vlasenko
2007-03-17random fixes to help textDenis Vlasenko
2007-03-17dont use obsolete function index() as pointed out by src.obsolete.funcsMike Frysinger
2007-03-17punt useless header as pointed out by src.obsolete.headersMike Frysinger
2007-03-17fix typo as pointed out by src.obsolete.funcsMike Frysinger
2007-03-16sed: fix very obscure case of escaped newline in sed commandDenis Vlasenko
(needed for uclibc build, btw). Add testcase for it.
2007-03-16- touchup wording a bitBernhard Reutner-Fischer
2007-03-15build system: produce link map. Rather useful when youDenis Vlasenko
are wondering why your busybox is much bigger that you hoped for.
2007-03-15gunzip: s/unsigned char extra_short/unsigned extra_short/Denis Vlasenko
we can unzip openssh-4.3p2.tar.gz now :)
2007-03-15mkfs_minix: stop using lots of bss/data.Denis Vlasenko
data -3500 bytes, code -300 bytes keep_data_small: expand/fix
2007-03-15syslogd: reduce data/bss usage. Code size is practically the same.Denis Vlasenko
2007-03-15gzip: Improve ptr_to_globals trick, allowing gccDenis Vlasenko
to optimize better. -480 bytes.
2007-03-15networking/interface.c: was doing really strange caching of fd'sDenis Vlasenko
open for getting ifconfig data - ??! Simplified all that. -200 bytes.
2007-03-15copy_file: comment out one condition which is always false.Denis Vlasenko
Add comment explaining POSIX rules for cp - and why these rules are dangerous. Provide conditionally compiled code for both POSIX and safe behaviors, select safe for now. Code shrunk by ~80 bytes.
2007-03-15fix TODO: getopt32 should reset optind to 1 itselfDenis Vlasenko
2007-03-15modify ptr_to_globals trick so that we do not violateDenis Vlasenko
type safety (well, sort of ;))
2007-03-14adjtimex: fix argument types (most importantly, allow negative ones)Denis Vlasenko
2007-03-14swapon: reinstate hole check but reduce it to warningDenis Vlasenko
inode_hash: remove unused variable
2007-03-14arp, networking/interface.c: eliminate staticsDenis Vlasenko
and unneeded on-stack buffers, disable (comment out) some apparently unused (and buggy) code paths. -700 bytes.
2007-03-14get_header_ar: reformatted code, no real changesDenis Vlasenko
2007-03-14chown, env: stop using staticsDenis Vlasenko
2007-03-14missed hunk of "stop using big static buffer for inode hash"Denis Vlasenko
2007-03-14stop using big static buffer for inode hashDenis Vlasenko
2007-03-14stop using (yet another) static bufferDenis Vlasenko
2007-03-14watchdog: don't use static variableDenis Vlasenko
2007-03-14udhcp: use fdprintf for pidfile creation (smaller code)Denis Vlasenko
2007-03-14cosmetic documentation changeDenis Vlasenko
2007-03-14- change option -c to -Z to match newer upstream SElinux conventionsBernhard Reutner-Fischer
2007-03-14gzip: bbunzip integration fixesDenis Vlasenko
2007-03-14gzip: use common bbunzip infrastructure - ~700 bytes code lessDenis Vlasenko
2007-03-14gzip: reduce global data footprint, part 3Denis Vlasenko
2007-03-14gzip: reduce global data footprint, part 2Denis Vlasenko
2007-03-14gzip: reduce global data footprint, part 1Denis Vlasenko
2007-03-13fsck_minix: stop using large buffers in bssDenis Vlasenko
2007-03-13ash: popstackmark is reported trying to pop until NULLDenis Vlasenko
is seen (which isn't possible), prevent this.
2007-03-13Do not fail password check if shadow password does not exist -Denis Vlasenko
fall back to ordinary one Reduced usage of functions returning datain static buffers. (mostly passwd/group/shadow related): function old new delta correct_password 143 193 +50 sulogin_main 490 533 +43 adduser_main 732 774 +42 passwd_main 1875 1915 +40 addgroup_main 330 365 +35 bb_internal_getspnam 38 - -38 bb_internal_fgetpwent 38 - -38 bb_internal_fgetgrent 38 - -38 static.resultbuf 168 88 -80 static.buffer 1872 1104 -768 ------------------------------------------------------------------------------ (add/remove: 0/3 grow/shrink: 5/2 up/down: 210/-962) Total: -752 bytes
2007-03-12resize: make it usable in in backticks; have a timeout (if displayDenis Vlasenko
doesn't respond to 'get cursor pos' ESC sequence...)
2007-03-12add missing copyright statements and doc for svDenis Vlasenko
2007-03-12sv: make code trivially smallerDenis Vlasenko
2007-03-12chcon: remove redundant ifs: if(p) free(p)Denis Vlasenko