Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-07-10 | Added a rule to make tags files for vi(m). | Mark Whitley | |
2000-07-10 | Comment on kernel stuff | Eric Andersen | |
-Erik | |||
2000-07-10 | Brand, new sed that uses libc regex routines. | Mark Whitley | |
There is some common code used by both sed & grep that should be put into utility.c as per Mat Kraai's suggestions/patch on the mailing list. Specifically, a common regex_compile() and a regex_subst() function need to be made. | |||
2000-07-10 | More linux kernel header file removal. | 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 | Remove the problematic CTRLCHAR macro. | Eric Andersen | |
-Erik | |||
2000-07-10 | Put the GROWBY variable inside the get_line_from_file function, as that is the | Mark Whitley | |
only function where it's used and it's always good to keep the namespace clean. :-) | |||
2000-07-10 | Removed unnecessary #include "regexp.h" line from find.c as per Matt Kraai's | Mark Whitley | |
suggestion on the mailing list. | |||
2000-07-10 | Function name cleanup. | 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 | |||
2000-07-10 | Applied patch from Matt Kraai as per his email: | Mark Whitley | |
However, the case of grep foo$ file didn't work, due to a problem with the flags used in regular expression compilation. The attached patch fixes this problem. ---patch------- Index: grep.c =================================================================== RCS file: /var/cvs/busybox/grep.c,v retrieving revision 1.30 diff -u -r1.30 grep.c --- grep.c 2000/07/04 22:17:01 1.30 +++ grep.c 2000/07/10 08:57:04 @@ -141,8 +141,10 @@ if (argv[optind] == NULL) usage(grep_usage); - /* compile the regular expression */ - reflags = REG_NOSUB; /* we're not going to mess with sub-expressions */ + /* compile the regular expression + * we're not going to mess with sub-expressions, and we need to + * treat newlines right. */ + reflags = REG_NOSUB | REG_NEWLINE; if (ignore_case) reflags |= REG_ICASE; if ((ret = regcomp(®ex, argv[optind], reflags)) != 0) { ---patch------- Thanks, Matt, it works great. | |||
2000-07-09 | More portability updates. Now compiles cleanly vs glibc, libc5, and uclibc | Eric Andersen | |
(except for mkfs_minix and fsck_minix -- and it doesn't yet link vs uclibc due to missing stuff in the library). -Erik | |||
2000-07-09 | include getopt.h | Eric Andersen | |
-Erik | |||
2000-07-09 | Fix a bug in get_line_from_file. If the length of the line is (GROWBY * n) + | Eric Andersen | |
GROWBY - 1, then it writes the null character just after the buffer. Yipe. Fix thanks to Matt Kraai <kraai@alumni.carnegiemellon.edu> Thanks Matt! -Erik | |||
2000-07-09 | The build depends were too strict. I depended on on debhelper (>= 2.0.80) | Eric Andersen | |
while debhelper 1.1.24 is available for slink. Just forget the dependancy -- it isn't needed. -Erik | |||
2000-07-08 | Argh. More cross libc cleanup. Should be ok now... | Eric Andersen | |
-Erik | |||
2000-07-08 | More cleanup on umount | Eric Andersen | |
-Erik | |||
2000-07-08 | Update files to reduce dependance on kernel version... | Eric Andersen | |
-Erik | |||
2000-07-08 | Add in tinynet | Eric Andersen | |
-Erik | |||
2000-07-08 | Doc updates to remove sfdisk. | Eric Andersen | |
-Erik | |||
2000-07-07 | Better description of the BB_FEATURE_USE_DEVPS_PATCH option. | Eric Andersen | |
-Erik | |||
2000-07-07 | Add in my fix for 2.4.x kernels so /proc/mounts will not have useless | Eric Andersen | |
deg entries which break mount, df, and friends. Renamed WillThisGoIntoTheKernel to avoid any confision. -Erik | |||
2000-07-07 | Removed sfdisk from BusyBox. It was buggy, fat, and we really couldn't | Eric Andersen | |
maintain it very well, so including it was not very appropriate. Those wanting an fdisk are invited to grab a copy from util-linux. -Erik | |||
2000-07-07 | Added in Matt Kraai. | Eric Andersen | |
-Erik | |||
2000-07-07 | Fix a dependancy bug for the docs. | Eric Andersen | |
-Erik | |||
2000-07-07 | Naming fix | Eric Andersen | |
-Erik | |||
2000-07-07 | Recognize Matt's poweroff fix. | Eric Andersen | |
-Erik | |||
2000-07-07 | Fix for bug #1003 -- BusyBox should now poweroff when asked to | Eric Andersen | |
do so... Fix thanks to Matt Kraai <kraai@alumni.carnegiemellon.edu> -Erik | |||
2000-07-07 | Web page update from Matt Kraai <kraai@alumni.carnegiemellon.edu> | Eric Andersen | |
-Erik | |||
2000-07-07 | This patch finishes the cleanup of all the commands. It also cleans up | Eric Andersen | |
the remaining chapters -- Matt Kraai <kraai@alumni.carnegiemellon.edu> -Erik | |||
2000-07-07 | Yet another busybox documentation update from Matt Kraai ↵ | Eric Andersen | |
<kraai@alumni.carnegiemellon.edu> -Erik | |||
2000-07-06 | Update 'make release' to remove all the .#filename files | Eric Andersen | |
the CVS leaves lying about... -Erik | |||
2000-07-06 | Turned some stuff into features that really are features, not apps. | Eric Andersen | |
-Erik | |||
2000-07-06 | Fix doc building so the dependancies work properly. | Eric Andersen | |
-Erik | |||
2000-07-06 | * Fixed tar creation support when reading from stdin ('tar -cf - . ') | Eric Andersen | |
thanks to Daniel Quinlan <quinlan@transmeta.com> -Erik | |||
2000-07-06 | Fixed backspace and delete so they work properly again -- broken | Eric Andersen | |
since 0.44. -Erik | |||
2000-07-06 | More doc patches from Matt Kraai <kraai@alumni.carnegiemellon.edu>. | Eric Andersen | |
Thanks Matt! -Erik | |||
2000-07-06 | Remove leftovers of block_device, which disapperared around | Eric Andersen | |
busybox 0.28. -Erik | |||
2000-07-06 | Change order. | Eric Andersen | |
-Erik | |||
2000-07-06 | Added (fixed) the '-n' option to fbset. Renumbered the command parameters to | Eric Andersen | |
put a gap between the normal commands and the fancy commands. This makes it cleaner to add normal commands. Patch from Jon McClintock <jonm@bluemug.com>. -Erik | |||
2000-07-06 | setkeycodes needs get_console_fd(), so if you disable chvt and deallocvt, but | Eric Andersen | |
leave setkeycodes active, busybox will not link. Also fix a trivial use-before-initialize warning. Both fixes from Jon McClintock <jonm@bluemug.com>. -Erik | |||
2000-07-06 | Remove some warning with glibc. | Eric Andersen | |
-Erik | |||
2000-07-06 | Comment on kill.c change. | Eric Andersen | |
-Erik | |||
2000-07-06 | Reorganized signal names for better architecture support -- patch | Eric Andersen | |
thanks to simon wood <simon@mungewell.uklinux.net> -Erik | |||
2000-07-06 | DocBook documentation update from Matt Kraai <kraai@alumni.carnegiemellon.edu> | Eric Andersen | |
-Erik | |||
2000-07-06 | Had an extra tcsetpgrp. | Eric Andersen | |
-Erik | |||
2000-07-06 | a few minor cleanups. | Eric Andersen | |
-Erik | |||
2000-07-06 | Remove MAXNAMLEN and use BUFSIZ instead. | Eric Andersen | |
-Erik |