aboutsummaryrefslogtreecommitdiff
path: root/coreutils
AgeCommit message (Collapse)Author
2001-10-24Split true and false into separate applets.Matt Kraai
2001-10-24Fixup the location of pwd.h and grp.hEric Andersen
2001-10-24Major rework of the directory structure and the entire build system.Eric Andersen
-Erik
2001-10-18Scrub up some function prototypes.Eric Andersen
-Erik
2001-10-05Use wfopen instead of fopen & error_msg, saves 64 bytesGlenn L McGrath
2001-10-05Invert FILEUTILS_PRESERVE_SYMLINKS into FILEUTILS_DEREFERENCE.Matt Kraai
2001-08-29Add -p support.Matt Kraai
2001-08-29SUSv2 specifies that if the extension is identical to the basename, itMatt Kraai
should not be removed.
2001-08-22Scrub things and ditch uint64_t and use a custom type nameEric Andersen
to avoid C lib compatibility problems.
2001-08-21Fix dos2unix compile problem with certain glibc versionsEric Andersen
2001-08-09Remove BB_SH define entirely.Matt Kraai
2001-08-06Use ferror(3) to check for errors, rather than inspecting errno. Thanks toMatt Kraai
David Douthitt for reporting, and shame on me for writing such crappy code.
2001-08-02Fix up some silly messups with the debian packaging, and a dumbEric Andersen
bug with chroot. I've had the package uploaded but perms set to 000, so I am going to re-tag things and re-cut the release. Folks who pulled from CVS in the last 30 minutes with just have to cope. -Erik
2001-08-02More libc5 fixupsEric Andersen
-Erik
2001-08-02Latest patch from vodz. Adds a check for divide by zero in the posixEric Andersen
math suport, cleaner math syntax error checking, moves redundant signal string tables (from kill and ash) into libbb and provides a few cleanups elsewhere.
2001-07-31Make formatting match GNU ls (we were including a spare ' ')Eric Andersen
-Erik
2001-07-31Always write record counts to stderr.Matt Kraai
2001-07-29Fix permisions when reading from stdinGlenn L McGrath
2001-07-29Fix broken logic when wraping encoded data into rows, also simplifies it a bitGlenn L McGrath
2001-07-28The src buffer size has to be a multiple of 3 (as i noted, but didnt do).Glenn L McGrath
2001-07-28Rewrite based on wget uuencode function.Glenn L McGrath
Saves aprox. 200 Bytes and in future can use common code between this and wget if BB_FEATURE_WGET_AUTHENTICATION is defined.
2001-07-25This fixes dos2unix and unix2dos so they behave as expected. dos2unixEric Andersen
was broken in the 0.52 release, and unix2dos was pretty lame... -Erik
2001-07-22Some patches to make dietlibc work...Eric Andersen
2001-07-19Some adjustments, mostly from David McCullough <davidm@lineo.com> toEric Andersen
make busybox be more uClinux friendly. I also adjusted Config.h for uClinux so it will automagically disable apps the arn't going to work without fork() and such. -Erik
2001-07-12Patch from vodz:Eric Andersen
Changed email address cmdedit API change optimizations for traceroute and md5sum added a new shared create_icmp_socket() function
2001-07-10Patch for md5sum from Aaron Lehmann <aaronl@vitelus.com> to slimEric Andersen
it down a little bit.
2001-07-10Cleanup from vodzEric Andersen
2001-07-09Patch from vodz to support 'tr a-z A-Z' syntax.Eric Andersen
2001-07-02Per patch from vodz, change a couple of consts to defines, sinceEric Andersen
apparently gcc 2.95.4, at least, is too stupid to realize that a "static const int" is in fact a constant.
2001-06-30Pad the human readable output for 'ls -sh' to 6 chars, since we willEric Andersen
have numbers printed as XXX.YU, so we need 6 digits not 4. -Erik
2001-06-30Fix a silly logic error which caused symlinks to be printed twice, andEric Andersen
wrongly caused the return code to be an error. -Erik
2001-06-30Fixed scaling problems involving make_human_readable_str.Manuel Novoa III
2001-06-30ls -s was reporting bytes instead of blocks.Manuel Novoa III
2001-06-29A really nice patch from Manuel Novoa III for compile timeEric Andersen
configurable size/speed tradeoffs.
2001-06-29Add some missing includes to kill warnings when building with the defaultManuel Novoa III
Config.h and using gcc's -fno-builtin. There are probably other files with the similar problems. Also, if building against uClibc, don't include asm/unistd.h in syscalls.c and module_syscalls.c.
2001-06-26A patch from Erik Meusel <erik@wh58-709.st.uni-magdeburg.de>Eric Andersen
to fix the behavior of 'tail -f -n 0 FILE'
2001-06-25Fix up some warnings that show up on ppcEric Andersen
2001-06-23These were broken when using dmalloc due to include file orderingEric Andersen
problems. busybox.h must be last. -Erik
2001-06-21Rewrote mkdir (and touched lots of things in the process).Matt Kraai
2001-06-13I reworked make_human_readable_str so it now has a sane interface,Eric Andersen
and then fixed up df, du, and ls to use the new interface. I also fixed up some formatting issues in ls while I was in there. -Erik
2001-06-01Vladimir's last_patch13, containing several bugfixes.Eric Andersen
2001-05-24Some more patchelttes from Larry Doolittle.Mark Whitley
2001-05-24Fix up some signed char vs int issues that show up on powerpc.Eric Andersen
2001-05-23Patch from larry to fix some grammar errors.Eric Andersen
2001-05-21Patch from Lars Kellogg-Stedman <lars@larsshack.org> to fix bugEric Andersen
#1130 (i.e. When you turn on features it should always ADD features)
2001-05-18(Almost) brand-new version of cut that supports muitiple lists of positions,Mark Whitley
per feature request from Tom Oehser.
2001-05-17Fix applet_name.Matt Kraai
2001-05-17Fix invocation of builtin shell to have proper argc and argv.Matt Kraai
2001-05-16Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.cMatt Kraai
by Larry Doolittle.
2001-05-15Patch from Vladimir:Eric Andersen
1) fixed a bug that could crash df, mount, and umount applets if the root device name was longer then the word "root" (/dev/loop1 vs /dev/root) - 2) severl functions needed static declaration in the umount applet 3) update declaration for function in last_char_is() in libbb