aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Michael Smith writes:andersen2003-11-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | I noticed a problem with ifconfig in busybox 0.60.5. The matching code seems to exist in busybox CVS as well, so I'll paste in the patch that fixed it. I was running: # ifconfig wan0 1.2.3.4 pointopoint 1.2.3.5 netmask 255.255.255.255 I was seeing the inet addr and P-t-P addr both being set to 1.2.3.5 (the pointopoint address). wan0 Link encap:Point-Point Protocol inet addr:1.2.3.5 P-t-P:1.2.3.5 Mask:255.255.255.255 UP POINTOPOINT RUNNING NOARP MTU:1500 Metric:1 ... The patch below seems to fix it. git-svn-id: svn://busybox.net/trunk/busybox@7904 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Ulrich Marx writes:andersen2003-11-141-0/+2
| | | | | | | | | | | | | | | | | | hello i had some trouble with the filedescriptor in udhcp. Two things happened on my device: 1.) broken or not connected cable (no dhcp-server) 2.) daemonizing (starting with option -b) i got a filedescriptor fd=0 from function raw_socket, after daemonizing (daemon call) the fd is closed. Client can't recieve data's anymore. i fixed this problem (like pidfile handling): git-svn-id: svn://busybox.net/trunk/busybox@7903 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Steven Seeger writes:andersen2003-11-141-1/+2
| | | | | | | | | | | | | | | | | | | Hey guys. I've found a bug in modprobe where it generates bad strings and makes sytem calls with them. The following patch seems to have fixed the problem. It is rather inherited elsewhere, as there seems to be incorrect entries in the list which results in more dependencies than really exist for a given call to mod_process. But, this patch prevents the bad text from going to the screen. You will notice there are cases where lcmd goes unmodified before calling system. Please consider the following patch. Thanks. -Steve git-svn-id: svn://busybox.net/trunk/busybox@7902 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Vladimir N. Oleynik (vodz) writes:andersen2003-11-141-4/+1
| | | | | | | | | | | | | | | Hi Glenn. I analysed BSS size gzip applet and found may be mistake: updcrc() checking if (crc_table_empty) but not resetted this var. This do make slow gzip applet ;-) --w vodz git-svn-id: svn://busybox.net/trunk/busybox@7901 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Marc Kleine-Budde noticed a missing semicolonandersen2003-11-141-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7900 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Merge common parts of sha1sum and md5sum, which is everything except thebug12003-11-106-11/+1063
| | | | | | | | | algorithms. Move algorithms to hash_fd and make them available via a common function. git-svn-id: svn://busybox.net/trunk/busybox@7863 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add some basic cvs usage infoandersen2003-11-081-1/+51
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7852 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rob Landley writes:andersen2003-11-081-3/+0
| | | | | | | | | Remove three entries in defconfig that config no longer has. Rob git-svn-id: svn://busybox.net/trunk/busybox@7851 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Steven Scholz to send the output from 'time'andersen2003-11-071-2/+2
| | | | | | | | | | | | | | to stderr, rather than stdout, so that things like ~ # time bunzip2 -c /tmp/test.bz2 > /dev/null real 0m 29.44s user 0m 29.30s sys 0m 0.12s operate as expected. git-svn-id: svn://busybox.net/trunk/busybox@7849 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This appears to be the correct fix to make CONFIG_FEATURE_DEB_TAR_BZ2andersen2003-11-071-3/+2
| | | | | | | | support compile. Glenn, you may want to verify this. -Erik git-svn-id: svn://busybox.net/trunk/busybox@7848 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix commentandersen2003-11-071-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7847 69ca8d6d-28ef-0310-b511-8ec308f3f277
* wrap bb help output if CONFIG_FEATURE_AUTOWIDTHtimr2003-11-071-1/+9
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7846 69ca8d6d-28ef-0310-b511-8ec308f3f277
* As vodz pointed out, setting unset_env to NULL is sufficientandersen2003-11-071-5/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7844 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rewrite, 800+ bytes smaller and more robust.bug12003-11-061-330/+178
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7817 69ca8d6d-28ef-0310-b511-8ec308f3f277
* By popular demand, revert to version 1.21, since Rules.mak:1.22andersen2003-11-051-11/+13
| | | | | | | causes the build to ignore CROSS_COMPILER_PREFIX set in .config git-svn-id: svn://busybox.net/trunk/busybox@7815 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix tar -j supportbug12003-11-053-23/+43
| | | | | | | | | | | | | | | | | Use the old fork() method of tar compression support, rather than read_bz2.... - (*uncompress)(int in, int out) seems like a more natural interface for compression code. - it might improve performance by seperating the work into one cpu bound and one io bound process. - There is extra code required to do read_[gz|bunzip] since (*uncompress)(int in, int out) will normally be used by the standalone compression applet. There have been problems with this method so if you see a "Short read" error let me know. git-svn-id: svn://busybox.net/trunk/busybox@7800 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix oversight with CONFIG_FEATURE_AUTOWIDTH handlingandersen2003-11-041-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7780 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Set unset_env pointing to a NULL item, to prevent us from walkingandersen2003-11-031-1/+5
| | | | | | | | off the end of the list and segfaulting. -Erik git-svn-id: svn://busybox.net/trunk/busybox@7766 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix rdate and ftpget/ftpput so they compile with the new xconnect.andersen2003-11-034-18/+34
| | | | | | | | I have checked rdate. Someone should also check ftpget/ftpput to be sure they still work. git-svn-id: svn://busybox.net/trunk/busybox@7765 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Avoid conflicts with the 2.6 kernel headers, which defineandersen2003-11-031-0/+5
| | | | | | | | | _IOR rather differently, thereby breaking the BLKGETSIZE64 ioctl. -Erik git-svn-id: svn://busybox.net/trunk/busybox@7756 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rework wget, the xconnect interface, and its various clientsandersen2003-10-316-67/+70
| | | | | | | | | | | | | | | | | in order to fix the problems with round robin DNS reported by Andrew Flegg: http://busybox.net/lists/busybox/2003-October/009579.html This removes the ipv6 specific xconnect dns lookups. I do not see why that would need to be special cased for ipv6 as was done, but that will just have to be tested. So IPV6 people -- please test this change! -Erik git-svn-id: svn://busybox.net/trunk/busybox@7735 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Put back the tar support stubs (and warnings) for now.andersen2003-10-311-0/+16
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7734 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Try to make indent formatting less horribleandersen2003-10-311-39/+37
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7733 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from David Meggy to make the swap default to the new version if nobug12003-10-311-5/+1
| | | | | | | version is specified and the kernel is relatively new. git-svn-id: svn://busybox.net/trunk/busybox@7731 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Move the tail -c option from FANCY_TAIL to the default tail, this makesbug12003-10-312-18/+9
| | | | | | | | the default tail options conform to SUSv3, with the non-SUS option all in FANCY_TAIL git-svn-id: svn://busybox.net/trunk/busybox@7730 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix stupid typoandersen2003-10-311-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7729 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove config options for sort -u and sort -r, they are always enabledbug12003-10-311-16/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7728 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add a comment with link to the SUSv3 standard for xargsbug12003-10-301-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7727 69ca8d6d-28ef-0310-b511-8ec308f3f277
* run through indentbug12003-10-301-387/+392
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7726 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Dmitry Zakharov,bug12003-10-301-12/+28
| | | | | | | | | | Fixes two bugs: - END block didn't execute after an exit() call - huge memory consumption and performance degradation on large input (now performance is comparable to gawk) git-svn-id: svn://busybox.net/trunk/busybox@7725 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make certain values specified in the environment always winandersen2003-10-301-13/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7724 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Accept the -c option and do nothingbug12003-10-291-0/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7723 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fix a bug where `which' doesn't check whether the file passed as an argumentbug12003-10-291-1/+3
| | | | | | | is a regular file, patch by Arthur Othieno git-svn-id: svn://busybox.net/trunk/busybox@7722 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make CONFIG_FEATURE_UNARCHIVE_TAPE common between itar and cpio, patchbug12003-10-291-7/+10
| | | | | | | by Arthur Othieno git-svn-id: svn://busybox.net/trunk/busybox@7721 69ca8d6d-28ef-0310-b511-8ec308f3f277
* "A few references to sourcefiles and URLs in docs/contributing.txt hadbug12003-10-291-7/+7
| | | | | | | gone stale" - Peter Korsgaard git-svn-id: svn://busybox.net/trunk/busybox@7720 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Use the return value from uncompress_bunzip, fix some typobug12003-10-292-10/+7
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7719 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add some error messages, use xmalloc instead of mallocbug12003-10-281-5/+18
| | | | git-svn-id: svn://busybox.net/trunk/busybox@7718 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a logic error, the old bunzip code returned non-zero for success,bug12003-10-281-1/+1
| | | | | | | new code returns 0 for success. git-svn-id: svn://busybox.net/trunk/busybox@7717 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Conditionally compile some files.bug12003-10-281-20/+23
| | | | | | | | | | This hides a bug related to the new bunzip code in the tar and dpkg[-deb] applets. It will also reduce compile time a little as some unused files wont be compiled. git-svn-id: svn://busybox.net/trunk/busybox@7716 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Another bzip2 update and speedup from Manuel Novoa III, with someandersen2003-10-231-223/+267
| | | | | | | additional changes (primarily lots of comments) from Rob Landley. git-svn-id: svn://busybox.net/trunk/busybox@7708 69ca8d6d-28ef-0310-b511-8ec308f3f277
* the dc applet now needs libmandersen2003-10-221-0/+7
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@7706 69ca8d6d-28ef-0310-b511-8ec308f3f277
* 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