aboutsummaryrefslogtreecommitdiff
path: root/coreutils
AgeCommit message (Collapse)Author
2003-10-09Patch from Steven Scholz, fix some warningsGlenn L McGrath
2003-09-24Add the -d optionGlenn L McGrath
2003-09-24Add the "install" applet, move get_ug_id to libbb as its used by chown,Glenn L McGrath
chgrp and install.
2003-09-15Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize)Eric Andersen
to ensure proper fallback behavior on, i.e. serial consoles. -Erik
2003-09-08Patch from Jean WolterGlenn L McGrath
expr currently always adds even if told to subtract
2003-09-08Preserve suid/sgid bitsGlenn L McGrath
2003-09-02move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as oneGlenn L McGrath
constant. Vodz last_patch_107
2003-08-29vodz, last patch 103Glenn L McGrath
2003-08-26Woops, depend on SHA1 not the optionGlenn L McGrath
2003-08-26SHA1 options depend on SHA1Glenn L McGrath
2003-08-19TypoGlenn L McGrath
2003-08-13Remove unnecessary pointer dereference.Manuel Novoa III
2003-08-09Adjust Erik's change, as I don't claim copyright of the applet.Manuel Novoa III
2003-08-08Remove unnecessary defamatory commentEric Andersen
2003-08-08Fix a stupid bug I introduced several months agoEric Andersen
2003-07-28last_patch98 from vodz:Eric Andersen
Denis, ># ./busybox env - echo zzz >zzz ># ./busybox echo -n zzz >zzz ># ./busybox env - echo -n zzz >env: invalid option -- n > > obviously, env tried to understand -n as env's option > instead of blindly passing it to echo... > >BusyBox v1.00-pre1 (2003.07.16-07:53+0000) multi-call binary > >Usage: env [-iu] [-] [name=value]... [command] Ah, you found very old problem. Last patch also have: - multiple "-u unsetenv" support - GNU long option support - save errno after exec failed before bb_perror_msg() --w vodz
2003-07-26There should be only one instance of CONFIG_FEATURE_AUTOWIDTHEric Andersen
2003-07-23Set the tm_isdst flag to -1 before calling mktime(). Otherwise, the currentManuel Novoa III
timezone setting is used for the new date.
2003-07-22eliminate DOSTATIC, DODEBUG, etc and name them sensiblyEric Andersen
2003-07-22Remove remaining libc5 support codeEric Andersen
2003-07-14Update a bunch of docs. Run a script to update my email addr.Eric Andersen
2003-07-14Patch from Thomas Cameron:Eric Andersen
Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
2003-07-14Michael Sternberg writes:Eric Andersen
Latest BusyBox from CVS (Jul 7 2003). File coreutils/ls.c "if" at line 970 should be enclosed in #ifdef CONFIG_FEATURE_LS_SORTFILES "if" at line 976 should be enclosed in #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
2003-07-05Patch from Kent Robotti adding a bunch of needed docs!Eric Andersen
-Erik
2003-07-03Patch from Russell Coker:Eric Andersen
I've attached my latest SE Linux patch for busybox against the latest CVS version of busybox.
2003-07-03Patch from Kent Robotti adding a bunch of menuconfig helpEric Andersen
2003-07-03As implemented, sha1sum would sometimes give the wrong answer.Eric Andersen
This fixes it and uses faster sha1 code from Dr. Gladman. -Erik
2003-06-26Make sure we end up with a unix2dos link to busyboxEric Andersen
2003-06-20Somewhere in the 2.4.x kernel series, /proc/mounts was changed to display aEric Andersen
"rootfs" entry as well as the traditional "/dev/root" entry. This caused applets such as mount and df to display two root filesystem entries.... This teaches the relevant utilities to ignore the "rootfs" entry. -Erik
2003-06-20Add prototype update missing from last_patch89. Fix screwyEric Andersen
formatting in cut.
2003-06-20last_patch89 from vodz:Eric Andersen
Manuel, I rewrite bb_getopt_ulflags() function for more universal usage. My version support now: - options with arguments (optional arg as GNU extension also) - complementaly and/or incomplementaly and/or incongruously and/or list options - long_opt (all applets may have long option, add supporting is trivial) This realisation full compatibile from your version. Code size grow 480 bytes, but only coreutils/* over compensate this size after using new function. Last patch reduced over 800 bytes and not full applied to all. "mkdir" and "mv" applets have long_opt now for demonstrate trivial addition support long_opt with usage new bb_getopt_ulflags(). Complementaly and/or incomplementaly and/or incongruously and/or list options logic is not trivial, but new "cut" and "grep" applets using this logic for examples with full demostrating. New "grep" applet reduced over 300 bytes. Mark, Also. I removed bug from "grep" applet. $ echo a b | busybox grep -e a b a b a b But right is printing one only. --w vodz
2003-06-08sha1sum option to compare checksumsGlenn L McGrath
2003-06-07Better error handlingGlenn L McGrath
2003-06-07Minor correctionGlenn L McGrath
2003-06-07Fix bug (wrong value computed) when reading file from stdin, implementGlenn L McGrath
-s option
2003-06-07Run through indentGlenn L McGrath
2003-05-26cleanup a bit to remove needless verify() functionEric Andersen
2003-05-26Vodz, last_patch_86Glenn L McGrath
2003-04-27Use bb_xgetlargGlenn L McGrath
2003-04-27New applet, foldGlenn L McGrath
2003-04-04Add more help textEric Andersen
2003-04-04Test that cvs commit messages are working properlyEric Andersen
-Erik
2003-04-03Fix 'thinko'.Manuel Novoa III
2003-03-28trivial fix to make sure we have sufficient arguments beforeEric Andersen
we mess with a possibly non-existant argv[1] -Erik
2003-03-23Oops... had != but meant ==.Manuel Novoa III
2003-03-19Restrict octal perms to <= 07777. Cosmetic error message change.Manuel Novoa III
2003-03-19Things my compiler didn't catch...Manuel Novoa III
2003-03-19Major coreutils update.Manuel Novoa III
2003-02-17Fix for big endian machinesGlenn L McGrath
2003-02-17New applet sha1sumGlenn L McGrath