Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge common parts of sha1sum and md5sum, which is everything except the | Glenn L McGrath | 2003-11-10 | 6 | -11/+1063 | |
| | | | | | | algorithms. Move algorithms to hash_fd and make them available via a common function. | |||||
* | Add some basic cvs usage info | Eric Andersen | 2003-11-08 | 1 | -1/+51 | |
| | ||||||
* | Rob Landley writes: | Eric Andersen | 2003-11-08 | 1 | -3/+0 | |
| | | | | | | Remove three entries in defconfig that config no longer has. Rob | |||||
* | Patch from Steven Scholz to send the output from 'time' | Eric Andersen | 2003-11-07 | 1 | -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. | |||||
* | This appears to be the correct fix to make CONFIG_FEATURE_DEB_TAR_BZ2 | Eric Andersen | 2003-11-07 | 1 | -3/+2 | |
| | | | | | support compile. Glenn, you may want to verify this. -Erik | |||||
* | fix comment | Eric Andersen | 2003-11-07 | 1 | -1/+1 | |
| | ||||||
* | wrap bb help output if CONFIG_FEATURE_AUTOWIDTH | Tim Riker | 2003-11-07 | 1 | -1/+9 | |
| | ||||||
* | As vodz pointed out, setting unset_env to NULL is sufficient | Eric Andersen | 2003-11-07 | 1 | -5/+1 | |
| | ||||||
* | Rewrite, 800+ bytes smaller and more robust. | Glenn L McGrath | 2003-11-06 | 1 | -330/+178 | |
| | ||||||
* | By popular demand, revert to version 1.21, since Rules.mak:1.22 | Eric Andersen | 2003-11-05 | 1 | -11/+13 | |
| | | | | causes the build to ignore CROSS_COMPILER_PREFIX set in .config | |||||
* | Fix tar -j support | Glenn L McGrath | 2003-11-05 | 3 | -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. | |||||
* | Fix oversight with CONFIG_FEATURE_AUTOWIDTH handling | Eric Andersen | 2003-11-04 | 1 | -0/+2 | |
| | ||||||
* | Set unset_env pointing to a NULL item, to prevent us from walking | Eric Andersen | 2003-11-03 | 1 | -1/+5 | |
| | | | | | off the end of the list and segfaulting. -Erik | |||||
* | Fix rdate and ftpget/ftpput so they compile with the new xconnect. | Eric Andersen | 2003-11-03 | 4 | -18/+34 | |
| | | | | | I have checked rdate. Someone should also check ftpget/ftpput to be sure they still work. | |||||
* | Avoid conflicts with the 2.6 kernel headers, which define | Eric Andersen | 2003-11-03 | 1 | -0/+5 | |
| | | | | | | _IOR rather differently, thereby breaking the BLKGETSIZE64 ioctl. -Erik | |||||
* | Rework wget, the xconnect interface, and its various clients | Eric Andersen | 2003-10-31 | 6 | -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 | |||||
* | Put back the tar support stubs (and warnings) for now. | Eric Andersen | 2003-10-31 | 1 | -0/+16 | |
| | ||||||
* | Try to make indent formatting less horrible | Eric Andersen | 2003-10-31 | 1 | -39/+37 | |
| | ||||||
* | Patch from David Meggy to make the swap default to the new version if no | Glenn L McGrath | 2003-10-31 | 1 | -5/+1 | |
| | | | | version is specified and the kernel is relatively new. | |||||
* | Move the tail -c option from FANCY_TAIL to the default tail, this makes | Glenn L McGrath | 2003-10-31 | 2 | -18/+9 | |
| | | | | | the default tail options conform to SUSv3, with the non-SUS option all in FANCY_TAIL | |||||
* | Fix stupid typo | Eric Andersen | 2003-10-31 | 1 | -1/+1 | |
| | ||||||
* | Remove config options for sort -u and sort -r, they are always enabled | Glenn L McGrath | 2003-10-31 | 1 | -16/+0 | |
| | ||||||
* | Add a comment with link to the SUSv3 standard for xargs | Glenn L McGrath | 2003-10-30 | 1 | -0/+3 | |
| | ||||||
* | run through indent | Glenn L McGrath | 2003-10-30 | 1 | -387/+392 | |
| | ||||||
* | Patch from Dmitry Zakharov, | Glenn L McGrath | 2003-10-30 | 1 | -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) | |||||
* | make certain values specified in the environment always win | Eric Andersen | 2003-10-30 | 1 | -13/+11 | |
| | ||||||
* | Accept the -c option and do nothing | Glenn L McGrath | 2003-10-29 | 1 | -0/+3 | |
| | ||||||
* | fix a bug where `which' doesn't check whether the file passed as an argument | Glenn L McGrath | 2003-10-29 | 1 | -1/+3 | |
| | | | | is a regular file, patch by Arthur Othieno | |||||
* | make CONFIG_FEATURE_UNARCHIVE_TAPE common between itar and cpio, patch | Glenn L McGrath | 2003-10-29 | 1 | -7/+10 | |
| | | | | by Arthur Othieno | |||||
* | "A few references to sourcefiles and URLs in docs/contributing.txt had | Glenn L McGrath | 2003-10-29 | 1 | -7/+7 | |
| | | | | gone stale" - Peter Korsgaard | |||||
* | Use the return value from uncompress_bunzip, fix some typo | Glenn L McGrath | 2003-10-29 | 2 | -10/+7 | |
| | ||||||
* | Add some error messages, use xmalloc instead of malloc | Glenn L McGrath | 2003-10-28 | 1 | -5/+18 | |
| | ||||||
* | Fix a logic error, the old bunzip code returned non-zero for success, | Glenn L McGrath | 2003-10-28 | 1 | -1/+1 | |
| | | | | new code returns 0 for success. | |||||
* | Conditionally compile some files. | Glenn L McGrath | 2003-10-28 | 1 | -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. | |||||
* | Another bzip2 update and speedup from Manuel Novoa III, with some | Eric Andersen | 2003-10-23 | 1 | -223/+267 | |
| | | | | additional changes (primarily lots of comments) from Rob Landley. | |||||
* | the dc applet now needs libm | Eric Andersen | 2003-10-22 | 1 | -0/+7 | |
| | | | | -Erik | |||||
* | sigh | Eric Andersen | 2003-10-22 | 1 | -1/+1 | |
| | ||||||
* | Goetz Bock writes: | Eric Andersen | 2003-10-22 | 2 | -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. | |||||
* | last_patch116 from vodz: | Eric Andersen | 2003-10-22 | 2 | -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 | |||||
* | Tomasz Motylewski reported that the 'which' applet does not find | Eric Andersen | 2003-10-22 | 1 | -12/+30 | |
| | | | | | | files when the full file PATH is specified. This patch from Arthur Othieno fixes it. | |||||
* | Patch from Arthur Othieno for style-guide.txt conformance | Eric Andersen | 2003-10-22 | 3 | -12/+36 | |
| | ||||||
* | Patch from Arthur Othieno for docs/style-guide.txt conformance. | Eric Andersen | 2003-10-22 | 1 | -6/+24 | |
| | ||||||
* | Patch from Arthur Othieno to fix a compiler warning | Eric Andersen | 2003-10-22 | 1 | -0/+2 | |
| | ||||||
* | make this a little bit less messy | Eric Andersen | 2003-10-22 | 1 | -13/+11 | |
| | ||||||
* | Update mail location | Eric Andersen | 2003-10-22 | 1 | -2/+2 | |
| | ||||||
* | Disable any buffering to stdout | Eric Andersen | 2003-10-22 | 1 | -0/+1 | |
| | ||||||
* | Tito writes: | Eric Andersen | 2003-10-22 | 1 | -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 | |||||
* | Andreas Mohr writes: | Eric Andersen | 2003-10-22 | 14 | -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 | |||||
* | Do a better job of dealing with screwy s390 abi changes | Eric Andersen | 2003-10-21 | 1 | -2/+5 | |
| | ||||||
* | ccording to this: | Eric Andersen | 2003-10-20 | 1 | -3/+3 | |
| | | | | | | http://sources.redhat.com/ml/binutils/2003-01/msg00290.html The name R_390_GOTOFF was changed to R_390_GOTOFF32. -Erik |