summaryrefslogtreecommitdiff
path: root/coreutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - debloat test. untested.Bernhard Reutner-Fischer2007-03-301-111/+116
| | | | | | | | | | text data bss dec hex filename 3154 0 172 3326 cfe test.o.oorig 2683 0 172 2855 b27 test.o This applet should be rewritten not to use such odd lexer semantics. It duplicates code from all over the place (see XXX). brrr
* - fix bug where we did not reject invalid classes like '[[:alpha'Bernhard Reutner-Fischer2007-03-301-79/+82
| | | | | | | - debloat while at it: text data bss dec hex filename 1554 0 19 1573 625 tr.o.oorig 1357 0 16 1373 55d tr.o
* - fold recurse, depthFirst and dereference params into one param flags.Bernhard Reutner-Fischer2007-03-293-10/+8
| | | | Minor size improvement (-16b for size, -24b according to bloat-o-meter).
* - move additional fancy options not mandated by SUSv3 into a FANCY optionBernhard Reutner-Fischer2007-03-282-7/+19
|
* diff: fix SEGV (NULL deref) in diff -NDenis Vlasenko2007-03-261-9/+18
|
* split: let me join bikeshed painting frenzy :)Denis Vlasenko2007-03-261-68/+71
| | | | | | | | | | | this one should be able to handle huge files. text data bss dec hex filename 664 4 0 668 29c busybox.t0/coreutils/split.o 628 0 0 628 274 busybox.t1/coreutils/split.o split_main 488 525 +37 suffix_len 4 - -4 next_file 77 - -77 (add/remove: 0/2 grow/shrink: 1/0 up/down: 37/-81) Total: -44 bytes
* - check the suffix proper plus misc touch upBernhard Reutner-Fischer2007-03-261-29/+21
|
* - implement suffices as required by SUSv3Bernhard Reutner-Fischer2007-03-261-17/+29
| | | | - fix glitch in next_file (suffices were exhaused too early).
* - shrink a tiny bit (-8b)Bernhard Reutner-Fischer2007-03-261-7/+18
|
* - rough prototype for split(1). TODO: Still needs some love since it's way ↵Bernhard Reutner-Fischer2007-03-253-0/+127
| | | | | | | too big.. text data bss dec hex filename 602 4 0 606 25e coreutils/split.o
* cmp: support 3rd and 4th arguments if DESKTOP=y (needed for gcc build)Denis Vlasenko2007-03-211-11/+28
|
* fix accumulated whitespace and indentation damageDenis Vlasenko2007-03-206-26/+26
|
* ls: fix segfault-if-standalone-shell, add big fat comment.Denis Vlasenko2007-03-191-2/+3
|
* chown, env: stop using staticsDenis Vlasenko2007-03-142-14/+14
|
* missed hunk of "stop using big static buffer for inode hash"Denis Vlasenko2007-03-141-1/+1
|
* introduce and use setfscreatecon_or_dieDenis Vlasenko2007-03-123-11/+3
| | | | | (patch by Yuichi Nakamura <ynakam@hitachisoft.jp>) runcon: *yet another* fix for vda's brainfart :(
* next portion of selinux updates: chcon, runcon. FromDenis Vlasenko2007-03-112-2/+3
| | | | | Yuichi Nakamura <himainu-ynakam@miomio.jp> KaiGai Kohei <busybox@kaigai.gr.jp>
* fix buglets found by randomconfig runDenis Vlasenko2007-03-112-3/+4
|
* selinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> (HitachiSoft)Denis Vlasenko2007-03-108-39/+310
|
* printf: allow hex/oct numbers; move functions aroundDenis Vlasenko2007-03-091-113/+104
| | | | so that we have no forward declarations
* diff: failed to confirm "static bug" in gcc - reinstating statics.Denis Vlasenko2007-03-092-78/+80
| | | | microscopic code improvements.
* chown: fix comment, fix verbose messageDenis Vlasenko2007-03-081-16/+15
|
* chown: support -H -L -P if ENABLE_DESKTOPDenis Vlasenko2007-03-083-28/+109
| | | | | chmod: cosmetic fixes expr: smallish help for dumb compilers
* diff: make -U0 workDenis Vlasenko2007-03-071-1/+1
|
* clean up accumulated whitespace damageDenis Vlasenko2007-03-071-3/+3
|
* who: stop using static buffer, small size optimizationsDenis Vlasenko2007-03-071-17/+25
|
* ls: w/o -l follow symlinks to dirs for commandline argsDenis Vlasenko2007-02-281-8/+10
|
* start_stop_daemon: add -chuid supportDenis Vlasenko2007-02-261-19/+1
|
* sort: fix multiple -k (was ignoring all except last)Denis Vlasenko2007-02-172-5/+11
|
* diff: fix access past end of arrayDenis Vlasenko2007-02-111-36/+13
|
* syslogd: fix "readpath bug" by using readlink insteadDenis Vlasenko2007-02-113-4/+5
| | | | libbb: rename xgetcwd and xreadlink
* EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>Denis Vlasenko2007-02-065-5/+5
|
* - fix buglet introduced in r17351 in find_param(). Closes #1193Bernhard Reutner-Fischer2007-02-041-4/+5
|
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-0372-2/+73
| | | | no preceding prototype
* - include busybox.h before looking at an eventual #if ENABLE_DESKTOPBernhard Reutner-Fischer2007-02-031-2/+2
|
* preparatory patch for -Wwrite-strings #1Denis Vlasenko2007-01-2911-25/+25
|
* use bb_sanitize_stdio() where appropriateDenis Vlasenko2007-01-271-13/+19
|
* - sum -r TODO should not print the filename as oposed to -sBernhard Reutner-Fischer2007-01-271-16/+21
| | | | Unfortunately, without rewriting sum, this bugfix adds 19 (!) bytes.
* find: fix -mtime, -mmin, -perm (+ add symbolic perm handling)Denis Vlasenko2007-01-261-3/+3
| | | | chmod: better name for a variable
* - remove nested function. Saves ~30 bytes.Bernhard Reutner-Fischer2007-01-241-11/+11
|
* - small size tweakBernhard Reutner-Fischer2007-01-201-4/+2
|
* - make pre SUSv3 option handling dependant on INCLUDE_SUSv2Bernhard Reutner-Fischer2007-01-201-6/+4
|
* - small size tweakBernhard Reutner-Fischer2007-01-201-1/+1
|
* - reuse retval for the option handling.Bernhard Reutner-Fischer2007-01-201-5/+5
| | | | - TODO add tee, readahead and splice support to uClibc and use it in busybox!
* - small size tweaksBernhard Reutner-Fischer2007-01-201-2/+2
|
* - make read_stduu() and read_base64() void, small size tweaksBernhard Reutner-Fischer2007-01-201-9/+8
|
* - small size tweakBernhard Reutner-Fischer2007-01-201-2/+2
|
* ls: stop doing time() for each file in "ls -l"Denis Vlasenko2007-01-191-1/+14
| | | | | ls: use fully-buffered stdout (can it be problematic on VERY slow/hanging NFS mounts?)
* ls: use get_cached_username/groupnameDenis Vlasenko2007-01-191-9/+5
|
* - reinstate paranoia check in wrapf().Bernhard Reutner-Fischer2007-01-181-2/+3
|