aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* sighandersen2003-10-221-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7703 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Goetz Bock writes:andersen2003-10-222-2/+24
| | | | | | | | | | | | | Dear list, during my quest do pack busybox into an RPM, I've fixed a small bug (missing \n) in dc's usage. And added two additional operations: mod and exp/power. Feel free to drop them. git-svn-id: svn://busybox.net/trunk/busybox@7702 69ca8d6d-28ef-0310-b511-8ec308f3f277
* last_patch116 from vodz:andersen2003-10-222-13/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | Stephane, >Using busybox+uclibc, crond syslog messages look like: > >Oct 9 09:04:46 soekris cron.notice crond[347]: ^Icrond 2.3.2 dillon, >started, log level 8 Thanks for testing. >The attached patch corrects the problem. Your patch is not correct. Correct patch attached. Also. Last patch have - add "Broken pipe" message to ash.c - busybox ash synced with dash_0.4.18 --w vodz git-svn-id: svn://busybox.net/trunk/busybox@7701 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tomasz Motylewski reported that the 'which' applet does not findandersen2003-10-221-12/+30
| | | | | | | | | files when the full file PATH is specified. This patch from Arthur Othieno fixes it. git-svn-id: svn://busybox.net/trunk/busybox@7700 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Arthur Othieno for style-guide.txt conformanceandersen2003-10-223-12/+36
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7699 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Arthur Othieno for docs/style-guide.txt conformance.andersen2003-10-221-6/+24
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7698 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Arthur Othieno to fix a compiler warningandersen2003-10-221-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7697 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make this a little bit less messyandersen2003-10-221-13/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7696 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update mail locationandersen2003-10-221-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7695 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Disable any buffering to stdoutandersen2003-10-221-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7694 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Tito writes:andersen2003-10-221-3/+2
| | | | | | | | | | | | | | | | Hi to all, I'm sorry but I didn't spot this big fat bug until now, Matteo Croce emailed me about it. Please apply this patch as the devfsd applet is broken and works only on a system booted with a standard devfsd ( the test I mostly did :-( ), but if used at boot time it DOESN'T WORK. Thanks in advance and please apply Tito git-svn-id: svn://busybox.net/trunk/busybox@7693 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Andreas Mohr writes:andersen2003-10-2214-104/+103
| | | | | | | | | | | | | | the busybox menuconfig triggered my "inacceptable number of spelling mistakes" upper level, so I decided to make a patch ;-) I also improved some wording to describe some things in a better way. Many thanks for an incredible piece of software! Andreas Mohr, random OSS developer git-svn-id: svn://busybox.net/trunk/busybox@7692 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Do a better job of dealing with screwy s390 abi changesandersen2003-10-211-2/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7685 69ca8d6d-28ef-0310-b511-8ec308f3f277
* ccording to this:andersen2003-10-201-3/+3
| | | | | | | | | http://sources.redhat.com/ml/binutils/2003-01/msg00290.html The name R_390_GOTOFF was changed to R_390_GOTOFF32. -Erik git-svn-id: svn://busybox.net/trunk/busybox@7680 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Manuel Novoa III writes:andersen2003-10-181-22/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | Hello Rob, Here's a patch to your bunzip-3.c file. Nice work btw. One minor bug fix... checking for error return when read()ing. Some size/performance optimizations as well. One instance of memset() seems unnecssary. You might want to take a look. Anyway, on my machine, decompressing linux-2.6.0-test7.tar.bz2 to /dev/null gave the following times: bunzip-3.c bzcat (system) bunzip-3.c (patched) real 0m24.420s 0m22.725s 0m20.701s user 0m23.930s 0m22.170s 0m20.180s sys 0m0.070s 0m0.080s 0m0.140s Size of the patched version is comparable (slightly larger or smaller depending on compiler flags). Manuel git-svn-id: svn://busybox.net/trunk/busybox@7665 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rob Landley's new micro-bunzip version 3. Rob writes:andersen2003-10-181-1592/+465
| | | | | | | | | | | | | | | | | | | | | | | | | | | The API for using partial writes, as described in my last message, sucked. So here's a patch against my last patch that changes things so that write_bunzip_data calls read_bunzip_data itself behind the scenes whenever necessary. So usage is now just start_bunzip(), write_bunzip_data() until it returns a negative number, and then the cleanup at the end of uncompressStream. It adds 32 bytes to the executable, but it should allow the caller (tar) to be simplified enough to compensate. Total -Os stripped exe size now 6856 bytes. Rob P.S. I attached the whole C file so you don't have to keep incremental patches straight if you don't want to. :) P.S. In the version I'm banging on now, I've simplified the license to just LGPL. I read the OSL a bit more closely and the patent termination clause would have bit IBM in their counter-suit of SCO if the code in question had been OSL instead of GPL, and I've decided I just don't want to beta-test legal code right now. git-svn-id: svn://busybox.net/trunk/busybox@7664 69ca8d6d-28ef-0310-b511-8ec308f3f277
* old gcctimr2003-10-171-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7663 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Paul Mundt (lethal) writes:andersen2003-10-111-12/+48
| | | | | | | | | | | | | | | | | | | | | | | | Erik, The format for /proc/meminfo has changed between 2.4 and 2.6, quite considerably. In addition to the removal of the two-line summary that was present in 2.4, MemShared was also removed. Presently (at least in busybox CVS HEAD), top fails to parse this correctly and spews forth a: top: failed to read 'meminfo' message. This patch switches around some of the semantics a little to do sane parsing for both 2.4 and 2.6. Also, in the event that the summary gets yanked from 2.4, this patch will deal with that as well. With this patch, I'm able to run top correctly on 2.6.0-test7 (tested on sh). Please apply. procps/top.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++------------ 1 files changed, 48 insertions(+), 12 deletions(-) git-svn-id: svn://busybox.net/trunk/busybox@7639 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Vodz last_patch_117, update options for new xargsbug12003-10-102-8/+51
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7635 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Vods versions of xargsbug12003-10-101-191/+510
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7634 69ca8d6d-28ef-0310-b511-8ec308f3f277
* I don't need to have my email adder listed twiceandersen2003-10-091-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7630 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Do not use kernel headersandersen2003-10-091-13/+50
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7629 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix an ommision preventing building, patch by Tito.bug12003-10-091-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7628 69ca8d6d-28ef-0310-b511-8ec308f3f277
* example devfs config file, patch from Tito.bug12003-10-091-0/+181
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7627 69ca8d6d-28ef-0310-b511-8ec308f3f277
* New applet, devfsd, by Matteo Croce and Titobug12003-10-096-0/+2070
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7626 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Steven Scholz, fix some warningsbug12003-10-093-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7625 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bugfix for xargsbug12003-10-092-58/+107
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7624 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Arnd Ben Otto writes:andersen2003-10-093-1/+64
| | | | | | | | | | | | | | | | | | | | | | Hi Eric I have written a small patch for the Busybox syslogd. With this patch one can limit the size of the messagfile. As soon as the limit is reached the syslogd can rotate or purge the messagefile(s) on his own. There is no necessity to use an external rotatescript. Even if logread does something similar, its very handy to have some messagefile after your box crash. I wrote this patch initial vor BB 0.6x where no cron daemon was avail. Now I adapted it for the new Version and i hope it is still useful. At least I still use it :-) bye Arnd git-svn-id: svn://busybox.net/trunk/busybox@7623 69ca8d6d-28ef-0310-b511-8ec308f3f277
* We did not have a safe_write, which is the analog to safe_read. Convertandersen2003-10-093-1/+50
| | | | | | | | full_write to use safe_write internally, which is needed to guarantee proper behavior, i.e. when writing to a pipe. git-svn-id: svn://busybox.net/trunk/busybox@7621 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix some warnings that have crept in recentlyandersen2003-10-091-6/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7620 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Tito, size optimisation and fix error in exit code of -Vbug12003-10-091-1056/+1265
| | | | | | | option git-svn-id: svn://busybox.net/trunk/busybox@7619 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Comaptability with gcc-2.95bug12003-10-091-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7618 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Vodz last_patch_105 without his xargs patch which doenst apply cleanlybug12003-10-062-2/+14
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7605 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add the x, n, s and E options, remove -r as its expected behaviour.bug12003-10-041-14/+115
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7601 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Rob Landley;bug12003-10-041-23/+24
| | | | | | | | | | Moving on to building diffutils, busybox sed needs this patch to get past the first problem. (Passing it a multi-line command line argument with -e works, but if you don't use -e it doesn't break up the multiple lines...) git-svn-id: svn://busybox.net/trunk/busybox@7600 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Woops, the previous patch reversal wasnt complete, breaking everything.bug12003-10-041-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7599 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Reverse my previous changes and make a note about why its dont this waybug12003-10-031-1/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7598 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Dont mix xarg options with utility option, fixes example ofbug12003-10-031-11/+15
| | | | | | | | | | `echo "README" | xargs ls -al` Dont specify a path for the default behaviour of echo args allocated space for an extra ptr Use defines for the different options git-svn-id: svn://busybox.net/trunk/busybox@7597 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Vodz, last_patch_114bug12003-10-031-139/+115
| | | | | | | | | | | | - env vars CONTENT_TYPE, CONTENT_LENGTH, HTTPD_REFERER, REMOTE_USER and AUTH_TYPE(Basic always). - POST data pipied now (previous version have loading into memory may be big size data and reducing with hardcoded limit) - removed $CGI_foo environment variables, else my have rubbish enviroment if POST data have big binary file git-svn-id: svn://busybox.net/trunk/busybox@7596 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch by Rob Landley, fix warningbug12003-10-031-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7595 69ca8d6d-28ef-0310-b511-8ec308f3f277
* argc has already been decrementedbug12003-10-031-2/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7594 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Rob Landley, Simplify organisation of arguments.bug12003-10-031-13/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7593 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix -C option when creating tar files.bug12003-10-021-30/+37
| | | | | | | | | | | Need to chdir after the tar file is opened, so make common tar filename parsing and send the file descriptor rather than filename to writeTarFile. Modify the verboseFlag operation to determine wether to display on stderr or stdout at display time, simpler than doing it in tar_main. git-svn-id: svn://busybox.net/trunk/busybox@7589 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Thomas Lundquist, update for current structurebug12003-10-011-11/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7587 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Rob Landley to fix backrefsbug12003-10-011-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7586 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch by Rob Landley, fix "newline after edit command"bug12003-10-011-2/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7584 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch by Rob Landley, work in progress update, fixes lots of bugs,bug12003-10-013-803/+680
| | | | | | | introduces a few others (but they are being worked on) git-svn-id: svn://busybox.net/trunk/busybox@7583 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch by Guillaume Morinbug12003-09-261-5/+13
| | | | | | | | Fix two race conditions, as described at. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=212764 git-svn-id: svn://busybox.net/trunk/busybox@7567 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Fillod Stephane bug12003-09-261-18/+68
| | | | | | | | | | Add follow mode to logread, ala "tail -f /var/log/messages" Note: output to a slow serial terminal can have side effects on syslog because of the semaphore. In such case, define RC_LOGREAD. git-svn-id: svn://busybox.net/trunk/busybox@7565 69ca8d6d-28ef-0310-b511-8ec308f3f277
* add size parameter to syslogd -Cbug12003-09-261-5/+10
| | | | | | | Patch by Padraig, resubmitted by Fillod Stephane git-svn-id: svn://busybox.net/trunk/busybox@7564 69ca8d6d-28ef-0310-b511-8ec308f3f277