aboutsummaryrefslogtreecommitdiff
path: root/coreutils
AgeCommit message (Collapse)Author
2006-10-31dd: fix bugs: always assumed conv=sync, died on write errorsDenis Vlasenko
w/o perror and statictics. Several small improvements
2006-10-28ls: silly comment fixesDenis Vlasenko
2006-10-28chmod: typo in commentsDenis Vlasenko
2006-10-28ls: cleanup part 2. ifdef forest is much less scary now :)Denis Vlasenko
2006-10-28ls: cleanup part 1Denis Vlasenko
2006-10-27recursive_action: add depth paramDenis Vlasenko
chmod: match coreutils versus following links
2006-10-27chgrp: just call chown! :)Denis Vlasenko
2006-10-27chown: add -vcf support if CONFIG_DESKTOPDenis Vlasenko
chmod: stop following symlinks
2006-10-27chmod: support -vcf if CONFIG_DESKTOPDenis Vlasenko
2006-10-27reshuffle libbb.h contents so that order of decls makes senseDenis Vlasenko
Found bad typo in largefile support :)
2006-10-27get_terminal_width_height: do not pass insanely large valuesDenis Vlasenko
2006-10-27last nail into error_msg() (de)capitalizationDenis Vlasenko
2006-10-26...and yet another small fix. Ouch...Denis Vlasenko
2006-10-26rename functions to more understandable namesDenis Vlasenko
2006-10-26remove bb_printf and the likeDenis Vlasenko
2006-10-26silly size savings and capitalization fixesDenis Vlasenko
2006-10-23watch: fix warningDenis Vlasenko
getty: fix breakage; fix excessive stack usage
2006-10-21cp: 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-20watch: execute command thru shell, not fork/exec. Other fixesDenis Vlasenko
2006-10-20message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko
2006-10-14add open_read_close() and similar stuffDenis Vlasenko
2006-10-12bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko
Renaming...
2006-10-12cut, mount: small improvementsDenis Vlasenko
2006-10-10od: provide full-blown od from coreutils if CONFIG_DESKTOPDenis Vlasenko
2006-10-08start_stop_daemon: add -N <nice> compatDenis Vlasenko
[re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code
2006-10-08correct largefile support, add comments about it.Denis Vlasenko
2006-10-08attempt to regularize atoi mess.Denis Vlasenko
2006-10-07dd: make it recognize not only 'k' but 'K' too;Denis Vlasenko
make it (partially) CONFIG_LFS-aware
2006-10-05httpd: add -u user[:grp] supportDenis Vlasenko
2006-10-05build system overhaulDenis Vlasenko
2006-10-03bb_applet_name -> applet_nameDenis Vlasenko
2006-10-03getopt_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-03rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko
2006-10-03runit/chpst: "change process state" utilityDenis Vlasenko
It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k
2006-10-01sed: unbreak multiple -e, -f option handling (my fault)Denis Vlasenko
2006-10-01g[un]zip: add support for -v (verbose).Denis Vlasenko
Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
2006-09-29wc: optionally support very large files in wcDenis Vlasenko
2006-09-29wc: reduce source cruft, make it so that "wc -c" (one option, no filenames)Denis Vlasenko
will not print leading blanks.
2006-09-29Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko
2006-09-28Tried to find sha1_crypt - nope... ok, save few bytes in md5_sha1_sum.cDenis Vlasenko
(time to sleep, 02:28 in the morning)...
2006-09-27usage.h: remove ugly tricks. We have USE_FEATURE_xxx now.Denis Vlasenko
Few bugs are now exposed...
2006-09-27silly switch style fixDenis Vlasenko
2006-09-23Another attempt at untangling the logic so the compiler can follow it and notRob Landley
generate pointless warnings.
2006-09-23remove unneeded #includes, fix indentationDenis Vlasenko
2006-09-22Follow-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 #1038Bernhard Reutner-Fischer
2006-09-19stty: fix few bugs found in testingDenis Vlasenko
2006-09-19stty: reorder code, reducing need in forward declarations.Denis Vlasenko
added few missed bits of error checking for parameters.