summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Patrick Huesmann writes:Eric Andersen2004-06-222-7/+30
| | | | | | | | | | | | | Hi, There was some problem with busybox modprobe. For details see http://www.busybox.net/lists/busybox/2004-May/011507.html I made a patch against busybox-1.00-pre10 to fix that one. This is a slight variant of Patrick's patch with a slightly cleaner implementation of mod_strcmp() -Erik
* Robin Farine writes:Eric Andersen2004-06-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Hi, Package: BusyBox Version: 1.0.0-pre10 When an incomplete read or write from/to a local file occurs (i.e. not an EOF condition), the tftp client prematurely exits. This problem can be reproduced by slowly piping data to the tftp client like this: (for v in 1 2 3; do echo $v; sleep 1; done) | \ tftp -p -l - -r output.txt <host> The output file on the TFTP server will contain "1". The attached patch provides a possible solution to this problem. I can reproduce this on ARM sa1110 and ARM xscale boards, both running Linux-2.6.4 & glibc-2.3.2. Thanks for the wonderful program! Robin
* Patch from Bastian Blank:Eric Andersen2004-06-221-1/+13
| | | | | | | | | | | | | | | Hi folks The following patch adds a new log message output to syslogd. This output omits hostname and priority and is used in d-i to make the syslog output better readable without lossing information. Bastian I am applying this since I have syslogd hacked up in my wife's access point with the same format string.... Might as well make this hack official. -Erik
* Patch from Bastian Blank:Eric Andersen2004-06-227-67/+22
| | | | | | | | | | | On Sat, Jun 19, 2004 at 10:57:37PM +0200, Bastian Blank wrote: > The following patch changes klogd to use openlog/syslog themself > instead of calling syslog_msg which always calls the triple > openlog/syslog/closelog. Updated patch: get rid of syslog_msg entirely. Request from Erik Andersen. Bastian
* Robin Farine writes:Eric Andersen2004-06-221-1/+1
| | | | | | | | | | | Package: BusyBox Version: 1.0.0-pre10 Passing the -q <integer> option to inetd causes it to dereference an invalid pointer (optarg). The attached patch provides a fix to this problem. Robin
* Patch from Bastian Blank:Eric Andersen2004-06-223-14/+31
| | | | | | | | | | | | The updated patch adds a config option to explicitely enable 64 bit arithmetic. Also it removes the arith prototype from libbb.h as it is not used outside of ash. Bastian this patch has been slightly modified by Erik for cleanliness.
* note the new mailing list policyEric Andersen2004-06-191-0/+3
|
* Typo fix from Niemann HartmutEric Andersen2004-06-091-1/+1
|
* Update reference for zip formatGlenn L McGrath2004-06-061-1/+4
|
* Woops, the previous commit was an accident, its supplied in the patch,Glenn L McGrath2004-06-053-203/+32
| | | | dont commit yet as we are in feature freeze
* Device table support for makedevs, the previous behaviour can beenGlenn L McGrath2004-06-054-32/+497
| | | | selected at configure time.
* Ahem. ("I'm just tweaking a documentation string, I don't need to compileRob Landley2004-05-261-1/+1
| | | | | | | | test it before checking in..." New entry for famous last words list.) Add the missing backslash at the end of the new sed doc string line. (This one actually compiled with "show verbose applet usage messages"...)
* Update sed help. (Add -r option to long help, add -i option to brief help,Rob Landley2004-05-261-3/+4
| | | | and alphabetizie the option list.)
* Kevin P. Fleming writes:Eric Andersen2004-05-261-0/+2
| | | | | | | | | | | | | | | Yes, I know busybox is in feature freeze. If this two-liner is too much that's fine, but it's handy. This patch allows busybox mount to support "-o move" just like it supports "-o bind", which is the equivalent of util-linux "mount --move". Usage is: mount -o move /mnt/point/1 /mnt/point/2 where /mnt/point/1 is an already mounted filesystem; it will be moved to /mnt/point/2.
* Update U.S. Robotics and Actiontec entriesEric Andersen2004-05-262-5/+6
|
* If read were to return with an error, bad things would happen. Fix it.Manuel Novoa III2004-05-261-2/+6
| | | | Also, make sure read errors are reflected in the applet exit code.
* oopsEric Andersen2004-05-261-3/+3
|
* Per suggestion from Bastian Blank, be less evil when we force fdisk toEric Andersen2004-05-262-9/+11
| | | | | transparently remap 32-bit interfaces to actually use 64 bit interfaces. -Erik
* Use tab not spaceEric Andersen2004-05-261-20/+20
|
* Make the grep option values a bit less horribleEric Andersen2004-05-261-18/+18
|
* Rick Richardson writes:Eric Andersen2004-05-261-8/+16
| | | | | | | | | | | Here is a patch that adds egrep -L support (the opposite of egrep -l). I realize this is probably too late for 1.0. But I offer it for your future consideration. egrep -L is used in some networking startup scripts I inherited. -Rick
* Patch from Yoshinori Sato:Eric Andersen2004-05-261-3/+47
| | | | | | | | This patch is uClinux-2.4.x for H8/300 module support. please apply. -- Yoshinori Sato
* As discussed, drop minit, which was not being supported in busybox.Eric Andersen2004-05-267-1055/+0
| | | | | People wishing to use minit can obtain it and obtain support from http://www.fefe.de/minit/
* Use STDIN_FILENO rather than '0'Eric Andersen2004-05-261-1/+1
|
* Rob Landley writes:Eric Andersen2004-05-261-4/+7
| | | | | | | | | | | add sed -r support. I bumped into a couple of things that want to use extended regular expressions in sed, and it really isn't that hard to add. Can't say I've extensively tested it, but it's small and isn't going to break anything that doesn't use it, so... Rob
* Rob Landley writes:Eric Andersen2004-05-261-1/+1
| | | | | | | | Run this test, against both busybox and a non-busybox version of "tee". while true; do i=$[$i+1]; echo "hello $i"; sleep 1; done | ./busybox tee Now run the busybox one again with the following small patch applied:
* Patch from vodz to correct 'grep -e pattern1 -e pattern2' logicEric Andersen2004-05-261-5/+3
|
* Do not prompt about FDISK large disk support when LFS is enabled.Eric Andersen2004-05-251-13/+27
| | | | | | Resolve a dependancy problem with the various malloc debug libs and make them mutually exclusive. -Erik
* Do not select LFSEric Andersen2004-05-191-1/+0
|
* Erik,Eric Andersen2004-05-192-8/+18
| | | | | | | | | | | | | | | | | | >http://busybox.net/cgi-bin/cvsweb/busybox/util-linux/fdisk.c?r1=1.22&r2=1.23&diff_format=u Its hack for "force" ;-) If to return the previous version of a Config.in http://busybox.net/cgi-bin/cvsweb/busybox/util-linux/Config.in?r1=1.12&r2=1.13 and to apply last patch, then I shall calm down. ;-) (OOPS, last patch have autocorrected from my editor begins spaces to tabs and removed spaces from empty lines too). --w vodz
* use busybox sysinfo structRuss Dill2004-05-192-1/+1
|
* Make vodz happy and make fdisk always use large file support ifEric Andersen2004-05-191-0/+8
| | | | | possible, even if LFS is not enabled for the rest of busybox. -Erik
* Fix a compile problemEric Andersen2004-05-191-2/+1
|
* fix timewarp in client (server fix later)Russ Dill2004-05-194-6/+16
|
* remove uneccessary check (already done in pidfile.c)Russ Dill2004-05-191-6/+4
|
* fix memory leak caused by switch to vforkRuss Dill2004-05-191-3/+4
|
* Use int instead of char for return type, in theory avoiding a castGlenn L McGrath2004-05-161-2/+2
|
* Fix for debian bug #248106, should use int for returned getopt value.Glenn L McGrath2004-05-101-1/+3
|
* Steve Grubb writes:Eric Andersen2004-05-051-1/+3
| | | | | | | | | | | Hi, I just re-reviewed the patch I just sent...and it needed to be BUFSIZ-3 in dos2unix.c . tempFn is BUFSIZ so the last addressable spot it BUFSIZ-1. The loop increments by 2. That's why it should be BUFSIZ-3. Best Regards, Steve Grubb
* Steve Grubb writes:Eric Andersen2004-05-052-3/+3
| | | | | | | | | | | Hello, I found and patched 2 more bugs. The first is a misplaced semi-colon. The second one is a buffer overflow. I doubt the buffer overflow is triggered in real life. But you never know what those wily hackers are up to. Thanks, Steve Grubb
* Steve Grubb writes:Eric Andersen2004-05-051-2/+4
| | | | | | | | | | | | | | | Hello, Last November a bug was found in iproute. CAN-2003-0856 has more information. Basically, netlink packets can come from any user. If a program performs action based on netlink packets, they must be examined to make sure they came from the place they are expected (the kernel). Attached is a patch against pre8. Please apply this before releasing 1.00 final. All users of busy box may be vulnerable to local attacks without it. Best Regards, Steve Grubb
* Fix size command, safe_strtoul gives and error if the \r is left in, theGlenn L McGrath2004-05-041-1/+6
| | | | | RFC spec says the \r should be there. This fix is the same as a recent wget fix
* Add part of a patch from Vernon Sauder that i missed a while backGlenn L McGrath2004-05-021-1/+1
|
* Update dpkg-deb usage to match current practicesGlenn L McGrath2004-05-021-3/+1
|
* This patch makes the id command SuS3 compliant and provides a groupsGlenn L McGrath2004-05-011-0/+314
| | | | | | | | | applet via an alias to id. - Add G option - Pedantic option checking - If effective group and user differs from the real one show both. id. - Alias id -Gn to groups applet
* Do not use getpass(3)Eric Andersen2004-05-017-38/+98
|
* Re-add the TODO list, mention trGlenn L McGrath2004-05-011-0/+11
|
* BugfixesGlenn L McGrath2004-04-301-2/+2
| | | | | | | | | | | 1) a non NULL terminated buffer that can mess up output, spotted by Ian Latter 2) in miscutils/strings.c: get rid of useless pointer dereference in third part of for(;;), spotted by Larry Doolittle 3) bug when reading from a pipe and being invoked as strings "cat Readme | strings" is broken "cat Readme | busybox strings" works spotted by Ian Latter and fixed by Tito.
* Fix symlink handling and small memory leakGlenn L McGrath2004-04-291-0/+5
|
* Thomas Koeller writes:Eric Andersen2004-04-262-2/+2
| | | | | | | | | | | | | | Hi, the following output is from BusyBox 1.0.0-pre10: ~ # ip link help ip: Command "help" is unknown, try "ip link help". tk This patch fixes it by removing the advertisements for the "ip blah help" stuff that is not implemented.