Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-17 | - end may be used uninitialized. | Bernhard Reutner-Fischer | |
- TODO: should eventually use skip_whitespace there | |||
2006-11-01 | mostly style fixes | 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-28 | ls: silly comment fixes | Denis Vlasenko | |
2006-10-28 | chmod: typo in comments | Denis Vlasenko | |
2006-10-28 | ls: cleanup part 2. ifdef forest is much less scary now :) | Denis Vlasenko | |
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 | chgrp: just call chown! :) | Denis Vlasenko | |
2006-10-27 | chown: add -vcf support if CONFIG_DESKTOP | Denis Vlasenko | |
chmod: stop following symlinks | |||
2006-10-27 | chmod: support -vcf if CONFIG_DESKTOP | 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-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 | silly size savings and capitalization fixes | Denis Vlasenko | |
2006-10-23 | watch: fix warning | Denis Vlasenko | |
getty: fix breakage; fix excessive stack usage | |||
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 | watch: execute command thru shell, not fork/exec. Other fixes | Denis Vlasenko | |
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |
2006-10-14 | add open_read_close() and similar stuff | 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-10 | od: provide full-blown od from coreutils if CONFIG_DESKTOP | 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 | |
2006-10-08 | attempt to regularize atoi mess. | Denis Vlasenko | |
2006-10-07 | dd: make it recognize not only 'k' but 'K' too; | Denis Vlasenko | |
make it (partially) CONFIG_LFS-aware | |||
2006-10-05 | httpd: add -u user[:grp] support | Denis Vlasenko | |
2006-10-05 | build system overhaul | Denis Vlasenko | |
2006-10-03 | bb_applet_name -> applet_name | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-10-03 | rename bb_default_error_retval -> xfunc_error_retval | Denis Vlasenko | |
2006-10-03 | runit/chpst: "change process state" utility | Denis Vlasenko | |
It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k | |||
2006-10-01 | sed: unbreak multiple -e, -f option handling (my fault) | Denis Vlasenko | |
2006-10-01 | g[un]zip: add support for -v (verbose). | Denis Vlasenko | |
Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that. | |||
2006-09-29 | wc: optionally support very large files in wc | Denis Vlasenko | |
2006-09-29 | wc: reduce source cruft, make it so that "wc -c" (one option, no filenames) | Denis Vlasenko | |
will not print leading blanks. | |||
2006-09-29 | Yet another silly little byte saving. couldn't -> cannot | Denis Vlasenko | |
2006-09-28 | Tried to find sha1_crypt - nope... ok, save few bytes in md5_sha1_sum.c | Denis Vlasenko | |
(time to sleep, 02:28 in the morning)... | |||
2006-09-27 | usage.h: remove ugly tricks. We have USE_FEATURE_xxx now. | Denis Vlasenko | |
Few bugs are now exposed... | |||
2006-09-27 | silly switch style fix | Denis Vlasenko | |
2006-09-23 | Another attempt at untangling the logic so the compiler can follow it and not | Rob Landley | |
generate pointless warnings. | |||
2006-09-23 | remove unneeded #includes, fix indentation | Denis Vlasenko | |
2006-09-22 | Follow-up to 16172: this also doesn't produce a warning for me on gcc 4.1, | Rob Landley | |
without having to feed the compiler nonsense. | |||
2006-09-21 | - pull r15578 from busybox_scratch branch: | Bernhard Reutner-Fischer | |
- fix bug where it would behave wrong if ./nohup.out was not writable. - debloat and make it readable while at it. $ size coreutils/nohup.o* text data bss dec hex filename 362 0 0 362 16a coreutils/nohup.o.trunk 344 0 0 344 158 coreutils/nohup.o $ make bloatcheck function old new delta nohup_main 324 310 -14 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-14) Total: -14 bytes | |||
2006-09-21 | - silence gcc warning about a funcptr possibly being used uninitialized. | Bernhard Reutner-Fischer | |
This is a perfect example on where we should NOT care if the functor is not initialized since the result will not be what the user may expect. Safe bet would be to init to NULL, but let's try normal uu for good measure. - fix commentary typo while at it. | |||
2006-09-20 | - fix embarrassing typo of mine. Closes bug #1038 | Bernhard Reutner-Fischer | |