aboutsummaryrefslogtreecommitdiff
path: root/coreutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Use errorMsg rather than fprintf.Matt Kraai2000-07-1414-43/+39
|
* Fix uninitialized variable.Eric Andersen2000-07-131-1/+1
| | | | -Erik
* From Matt Kraai <kraai@alumni.carnegiemellon.edu>Eric Andersen2000-07-131-24/+28
| | | | | | | | | | | | | > 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
* Correct argument parsing and other minor cleanups.Matt Kraai2000-07-131-11/+11
|
* Always report the applet name when doing error reporting.Matt Kraai2000-07-128-20/+18
|
* Use global applet_name instead of local versions.Matt Kraai2000-07-123-3/+3
|
* Use global applet_name instead of local versions.Matt Kraai2000-07-121-5/+2
|
* Re-enable ln -n in the help.Eric Andersen2000-07-111-2/+0
| | | | -Erik
* Another patch from Matt Kraai <kraai@alumni.carnegiemellon.edu>:Eric Andersen2000-07-111-27/+2
| | | | | | | | | | > > 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
* Comment on kernel stuffEric Andersen2000-07-101-4/+0
| | | | -Erik
* Remove yet more kernel header dependancies.Eric Andersen2000-07-101-1/+1
| | | | -Erik
* Remove unused variable.Eric Andersen2000-07-101-1/+1
| | | | -Erik
* From Matt Kraai <kraai@alumni.carnegiemellon.edu>:Eric Andersen2000-07-102-10/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Patch from Matt Kraai <kraai@alumni.carnegiemellon.edu>:Eric Andersen2000-07-101-2/+4
| | | | | | | | | | | | | | | | | | | 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
* More portability updates. Now compiles cleanly vs glibc, libc5, and uclibcEric Andersen2000-07-093-0/+10
| | | | | | (except for mkfs_minix and fsck_minix -- and it doesn't yet link vs uclibc due to missing stuff in the library). -Erik
* Update files to reduce dependance on kernel version...Eric Andersen2000-07-081-4/+4
| | | | -Erik
* Remove MAXNAMLEN and use BUFSIZ instead.Eric Andersen2000-07-061-1/+1
| | | | -Erik
* Remove misguided klude around for 2.4.x-test* brokenness. Al ViroEric Andersen2000-07-051-3/+0
| | | | | will be removing this stuff from /proc/mounts real soon now I am assured. -Erik
* * Fix to tr so it recognizes standard escape sequences. Merged commonEric Andersen2000-07-052-33/+7
| | | | | | | escape seq. code from tr and echo into utility.c. Fix thanks to Matt Kraai <kraai@alumni.carnegiemellon.edu>. * This should close Bug #1015. Please test. -Erik
* Added support for ignoring '-g' per GNU ls, thanks to David VrabelEric Andersen2000-07-031-0/+2
| | | | | | <dvrabel@arcom.co.uk>. Seems some ftp clients expect the '-g' option to exist. -Erik
* Yanked out the cstring_alloc() and cstring_lineFromFile() functions fromMark Whitley2000-06-281-2/+2
| | | | | | | utility.c and replaced them with get_line_from_file() from the new grep.c. Also changed declaration in internal.h and replaced instances of cstring_lineFromFile() in dc.c and sort.c with get_line_from_file(). Tested them and they worked fine.
* Fixed segfault with 'cut -f 1 -d:' and added 'cut -s' suport.Eric Andersen2000-06-261-7/+23
| | | | | Fix thanks to Arne Bernin <arne@matrix.loopback.org> -Erik
* Updates to handle Linux 2.4.0 kernels (kludged around the "none" entries inEric Andersen2000-06-261-0/+3
| | | | | /proc/mounts, added a hack to make sysinfo work with both old and new kernels). -Erik
* Pavel Roskin <proski@gnu.org> just found a nasty memoryEric Andersen2000-06-221-1/+8
| | | | | corruption bug. Disabling 'ln -n' till it is fixed. -Erik
* Document 'ln --'Eric Andersen2000-06-211-1/+2
| | | | -Erik
* printf now compiles cleanly under both libc5 and libc6.Eric Andersen2000-06-191-2/+1
| | | | -Erik
* Updates to a number of apps to remove warnings/compile errors under libc5.Eric Andersen2000-06-1934-42/+40
| | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik
* Check for 3 and more arguments was incorrectPavel Roskin2000-06-181-1/+1
| | | | | It is only allowed for linking to a directory But linking to a directory still fails and may be removed
* ln: fixed command line parser. Added support for "--"Pavel Roskin2000-06-151-8/+12
|
* Fixed "rm foo" that had been broken while implementing "rm -- foo"Pavel Roskin2000-06-141-6/+11
|
* Add new apps md5sum uudecode uuencode, fix some minor formatting things.Eric Andersen2000-06-134-1/+1607
| | | | -Erik
* * Fixed 'swapon -a' and 'swapoff -a', which were broken.Eric Andersen2000-06-071-7/+44
| | | | | | * Fixed 'mount -a' so it works as expected. * Implemented 'ls -R' (enabled by enabling BB_FEATURE_LS_RECURSIVE) -Erik
* Fix 'date -u'Eric Andersen2000-06-061-1/+1
| | | | -Erik
* Fixed a bunch of stuff:Eric Andersen2000-06-062-32/+42
| | | | | | | | | | * Fixed segfault caused by "touch -c" * Fixed segfault caused by "rm -f" * Fixed segfault caused by "ln -s -s" and similar abuses. * Fixed segfault caused by "cp -a -a" and similar abuses. * Implemented "rm -- <foo>" updated docs accordingly. -Erik
* Don't allow mkfifo to create files such as "--help"Eric Andersen2000-06-041-1/+1
| | | | | | | | This patch checks if the name of FIFO to be created begins with "-" and calls usage() if it does. Regards, Pavel Roskin
* Fix touch so it behaves itself (it could segfault in some cases).Eric Andersen2000-06-022-27/+29
| | | | | Fix uname help info formatting. -Erik
* This is a fix for chrootEric Andersen2000-06-021-8/+7
| | | | | | | | | | - Fixed error message when the command is not specified (possibly crash on libc5 systems!) - Debugging output removed - Using fatalError() whenever appropriate Regards, Pavel Roskin
* Pavel fixed a segfault in yes.Eric Andersen2000-06-021-1/+1
| | | | -Erik
* A number of additional fixed from Pavel Roskin, note some more bugs in theEric Andersen2000-06-023-8/+8
| | | | | | TODO list. Add Glenn to the Authors list for writing a mini ar for BusyBox, which is now included. -Erik
* More libc portability updates, add in the website (which has not beenErik Andersen2000-05-193-19/+27
| | | | | archived previously). Wrote 'which' during the meeting today. -Erik
* Some more portability updatesErik Andersen2000-05-171-4/+4
| | | | -Erik
* Some updates for better portability.Erik Andersen2000-05-161-2/+2
| | | | -Erik
* More doc updatesErik Andersen2000-05-131-0/+1
| | | | -Erik
* Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELPErik Andersen2000-05-1227-72/+528
| | | | | | | | which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik
* * cp -fa now works as expected for symlinks (it didn't before)Erik Andersen2000-05-105-18/+33
| | | | | | * zcat works again (wasn't working since option parsing was broken) * more doc updates/more support for BB_FEATURE_SIMPLE_HELP -Erik
* Add suffix stripping support to basenameErik Andersen2000-05-101-5/+17
| | | | -Erik
* More stuffErik Andersen2000-05-022-8/+9
| | | | -Erik
* Due to the license change I can now use Minix code. Minix trErik Andersen2000-05-011-525/+190
| | | | | | (adapted) now replaces BSD tr. Goes from 5k to 1k, and eliminates bsearch from the list of libc symbols. -Erik
* My little adventure of analyzing lib usage has already rooted outErik Andersen2000-05-011-5/+5
| | | | | | | a big "P" Policy violator -- logname was using getlogin(3), which uses utmp under the hood. We don't need no stinkin' utmp (and if we are using tinylogin, it is unlikely to be useful trying). -Erik
* Some accrued fixes/updates.Erik Andersen2000-05-012-2/+96
| | | | | | | | * cp/mv now accepts (and ignores) the -f flag, since it always does force anyway * tail can now accept -<num> commands (e.g. -10) for better compatibility with the standard tail command * added a simple id implementation; doesn't support supp. groups yet