Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-09-10 | Using seek=? used to cause part of the original file to be zero'ed, i | Glenn L McGrath | |
think this was caused by opening the file in truncate mode. | |||
2000-09-10 | My previous attempt to make dd use fullRead, fullWrite was very broken, | Glenn L McGrath | |
this should actually work. | |||
2000-09-07 | New ls sorting patch, as written by Sterling Huxley, and then updated | Eric Andersen | |
by kent robotti. I then updated it to use my_getpwuid and my_getgrgid (per busybox policy). -Erik | |||
2000-09-05 | Added expr, from Edward Betts <edward@debian.org>, with some fixups | Eric Andersen | |
and docs added by me. -Erik | |||
2000-08-28 | Rewritten by mistake. | Matt Kraai | |
2000-08-25 | ar.c now uses a linked list to process headers, uses getopt, new internal ↵ | Glenn L McGrath | |
function extractAr(srcFD, dstFd, filename) to make it easily accessable to other busybox functions. moved copySubFile from ar.c to utilities.c modified dd.c to use fullWrite modified copyFile in utilities.c to use copySubFile | |||
2000-08-22 | Fixed a warning about a label not being used | Pavel Roskin | |
2000-08-22 | Fixed misuse of type "char" | Pavel Roskin | |
2000-08-11 | Add optional ls file sorting, thanks to a patch from | Eric Andersen | |
Sterling Huxley <sterling@europa.com> -Erik | |||
2000-08-10 | Some #include updates. | Eric Andersen | |
-Erik | |||
2000-08-02 | Cleaner way to handle -NUM and +NUM, reduces the mem usage as well. | Eric Andersen | |
-Erik | |||
2000-08-02 | Minor cleanup thingy. fprintf(stderr, ...) -> errorMsg(). | Mark Whitley | |
2000-08-02 | Brand, new version of cut. This fixes the bugs in the old cut, is smaller, and | Mark Whitley | |
is a sight easier to understand than the Minix cut. | |||
2000-08-02 | Update to the tail rewrite by "Allen Soard" <esp-software@mail.hypermart.net> | Eric Andersen | |
-Erik | |||
2000-07-31 | Commit the rewrite of tail by Allen Soard | Eric Andersen | |
<esp-software@mail.hypermart.net>. Thanks Allen for you work at getting this into shape, -Erik | |||
2000-07-28 | Fixed to pass -Wundef | Pavel Roskin | |
2000-07-28 | Fix for a potential uninitialized variable, thx to | Eric Andersen | |
Ken Chalmers <chalmers@norscan.com> -Erik | |||
2000-07-28 | Some cleanups, based on a patch from Ken Chalmers | Eric Andersen | |
-Erik | |||
2000-07-26 | Fixed a syntax error & superfluous param decl that was causing the build to | Mark Whitley | |
fail. | |||
2000-07-26 | Fix some bitrot. | Eric Andersen | |
-Erik | |||
2000-07-25 | Use BB_FEATURE_CLEAN_UP where appropriate | Eric Andersen | |
-Erik | |||
2000-07-24 | chroot can now call the builtin shell | Pavel Roskin | |
2000-07-20 | Converted option parsing to using getopt(). Also managed to remove an | Mark Whitley | |
extraneous logic loop that existed only for the purpose of the special case of only one file. I replaced it with a variable to keep track of the number of files read. | |||
2000-07-20 | Whoops. Forgot to #include <getopt.h>. | Mark Whitley | |
2000-07-19 | Converted option parsing to getopt() and made some minor formatting changes. | Mark Whitley | |
2000-07-19 | Centralize handling of --help. | Matt Kraai | |
2000-07-19 | Add usage messages for applets without them. | Matt Kraai | |
2000-07-19 | Use FatalError() | Eric Andersen | |
-Erik | |||
2000-07-17 | Moved functions used by "lsmod" from cat.c to utility.c | Pavel Roskin | |
Adjusted to make lsmod and sh compilable as standalone apps. Comment fixes | |||
2000-07-17 | The result of getopt() is "int" and should be treated as such | Pavel Roskin | |
2000-07-16 | Extract usage information into a separate file. | Matt Kraai | |
2000-07-14 | Don't use strings directly in calls to usage(). This is in preparation | Matt Kraai | |
for their extraction to a separate file. | |||
2000-07-14 | Getopt'ed by Marc Nijdam <marc_nijdam@hp.com> | Eric Andersen | |
-Erik | |||
2000-07-14 | Getopt'rd by Marc Nijdam <marc_nijdam@hp.com> | Eric Andersen | |
-Erik | |||
2000-07-14 | More cleanups. | Eric Andersen | |
-Erik | |||
2000-07-14 | Fix argument parsing. | Matt Kraai | |
2000-07-14 | Use errorMsg rather than fprintf. | Matt Kraai | |
2000-07-13 | Fix uninitialized variable. | Eric Andersen | |
-Erik | |||
2000-07-13 | From Matt Kraai <kraai@alumni.carnegiemellon.edu> | Eric Andersen | |
> Here is a patch so that tr can handle NULL characters as well. Give it > a shot and let me know what you think. It is against the latest CVS > version. > > In my tests, the following now works as expected. > > tr '\0' '\n' > > Later, > Matt | |||
2000-07-13 | Correct argument parsing and other minor cleanups. | Matt Kraai | |
2000-07-12 | Always report the applet name when doing error reporting. | Matt Kraai | |
2000-07-12 | Use global applet_name instead of local versions. | Matt Kraai | |
2000-07-12 | Use global applet_name instead of local versions. | Matt Kraai | |
2000-07-11 | Re-enable ln -n in the help. | Eric Andersen | |
-Erik | |||
2000-07-11 | Another patch from Matt Kraai <kraai@alumni.carnegiemellon.edu>: | Eric Andersen | |
> > The following patch allows ln -n to function like GNU. It also fixes a > typo with my previous patch to add support for ln FILE DIRECTORY. And > it removes some code that checks the maximum length of the filenames. I > can't figure out why that code is necessary. Anyone know? > > Matt | |||
2000-07-10 | Comment on kernel stuff | Eric Andersen | |
-Erik | |||
2000-07-10 | Remove yet more kernel header dependancies. | Eric Andersen | |
-Erik | |||
2000-07-10 | Remove unused variable. | Eric Andersen | |
-Erik | |||
2000-07-10 | From Matt Kraai <kraai@alumni.carnegiemellon.edu>: | Eric Andersen | |
Howdy, Bug #1006 reports that ln -s /tmp/foo . does not work correctly. In fact, it appears that any instantiation of ln -s FILE... DIRECTORY does not work. The following patch adds support for this form, which then fixes the particular instance noted in the bug report. In the process, I needed the basename function. This appears in the string.h provided by glibc, but not uC-libc. So I wrote my own to go in utility.c, called get_last_path_component. I also modified the basename utility to use this function. At some point it might be desirous to use the basename from the library if it exists, and otherwise compile our own. But I don't know how to do this. Matt | |||
2000-07-10 | Patch from Matt Kraai <kraai@alumni.carnegiemellon.edu>: | Eric Andersen | |
GNU tr complains on the following: $ tr a '' tr: when not truncating set1, string2 must be non-empty BusyBox tr does not complain: $ tr a '' a ^D 0 It should result in an error, not in some spurious output. The attached patch generates an error. Matt |