summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Only use getopt and associated flags if checking is enabledGlenn L McGrath2003-11-181-44/+36
|
* Replaced by md5_sha1_sum.cGlenn L McGrath2003-11-181-492/+0
|
* Replaced by md5_sha1_sum.cGlenn L McGrath2003-11-181-1102/+0
|
* Dont free filename, its needed in the extracted files list.Glenn L McGrath2003-11-171-2/+1
|
* This was made obsolete by config-udeb-linux-i386Glenn L McGrath2003-11-171-415/+0
|
* Remove net-udeb flavour, we dotn use itGlenn L McGrath2003-11-173-1161/+0
|
* Use the PROG variable instead of 'busybox' in the release targetGlenn L McGrath2003-11-171-5/+5
|
* Fix a bug where cpio wouldnt work unless -u was specifiedGlenn L McGrath2003-11-151-10/+8
|
* Move from read_gz to the pipe()+fork() method.Glenn L McGrath2003-11-1516-284/+156
| | | | | | | | | open_transformer(), common code for pipe+fork. Function pointer for read() no longer needed. Allow inflate to be initialised with a specified buffer size to avoid over-reading. Reset static variables in inflate_get_next_window to fix a bug where only the first file in a .zip would be be extracted.
* Fix memory leaksGlenn L McGrath2003-11-151-0/+3
|
* Fix a "broken pipe" problem. vodz, last_patch_116-2Glenn L McGrath2003-11-141-5/+1
|
* Keep trying to find a good header, if we exit it will cause .tar.gzGlenn L McGrath2003-11-141-1/+1
| | | | files to compute incorrect crc and length for gzip
* Catch unsupported featuresGlenn L McGrath2003-11-141-7/+15
|
* NEW APPLET: pipe_progress, used by debian installerGlenn L McGrath2003-11-144-0/+64
|
* Fix build error with tar -jGlenn L McGrath2003-11-141-1/+1
|
* Remove some tar_gz stuff that get dragged inGlenn L McGrath2003-11-141-3/+4
|
* Remove debugging noise.Glenn L McGrath2003-11-141-1/+0
|
* Read in blocks rather than one char at a time, greatly improves speedGlenn L McGrath2003-11-141-4/+23
|
* Oskar Liljeblad writes:Eric Andersen2003-11-142-1/+3
| | | | Here's a fix for the hard-coded device name in fbset.
* Michael Smith writes:Eric 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.
* Ulrich Marx writes:Eric 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):
* Steven Seeger writes:Eric 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
* Vladimir N. Oleynik (vodz) writes:Eric 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
* Marc Kleine-Budde noticed a missing semicolonEric Andersen2003-11-141-1/+1
|
* Merge common parts of sha1sum and md5sum, which is everything except theGlenn L McGrath2003-11-106-11/+1063
| | | | | | algorithms. Move algorithms to hash_fd and make them available via a common function.
* Add some basic cvs usage infoEric Andersen2003-11-081-1/+51
|
* Rob Landley writes:Eric Andersen2003-11-081-3/+0
| | | | | | Remove three entries in defconfig that config no longer has. Rob
* Patch from Steven Scholz to send the output from 'time'Eric 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.
* This appears to be the correct fix to make CONFIG_FEATURE_DEB_TAR_BZ2Eric Andersen2003-11-071-3/+2
| | | | | support compile. Glenn, you may want to verify this. -Erik
* fix commentEric Andersen2003-11-071-1/+1
|
* wrap bb help output if CONFIG_FEATURE_AUTOWIDTHTim Riker2003-11-071-1/+9
|
* As vodz pointed out, setting unset_env to NULL is sufficientEric Andersen2003-11-071-5/+1
|
* Rewrite, 800+ bytes smaller and more robust.Glenn L McGrath2003-11-061-330/+178
|
* By popular demand, revert to version 1.21, since Rules.mak:1.22Eric Andersen2003-11-051-11/+13
| | | | causes the build to ignore CROSS_COMPILER_PREFIX set in .config
* Fix tar -j supportGlenn L McGrath2003-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.
* Fix oversight with CONFIG_FEATURE_AUTOWIDTH handlingEric Andersen2003-11-041-0/+2
|
* Set unset_env pointing to a NULL item, to prevent us from walkingEric Andersen2003-11-031-1/+5
| | | | | off the end of the list and segfaulting. -Erik
* Fix rdate and ftpget/ftpput so they compile with the new xconnect.Eric Andersen2003-11-034-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 defineEric Andersen2003-11-031-0/+5
| | | | | | _IOR rather differently, thereby breaking the BLKGETSIZE64 ioctl. -Erik
* Rework wget, the xconnect interface, and its various clientsEric Andersen2003-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
* Put back the tar support stubs (and warnings) for now.Eric Andersen2003-10-311-0/+16
|
* Try to make indent formatting less horribleEric Andersen2003-10-311-39/+37
|
* Patch from David Meggy to make the swap default to the new version if noGlenn L McGrath2003-10-311-5/+1
| | | | version is specified and the kernel is relatively new.
* Move the tail -c option from FANCY_TAIL to the default tail, this makesGlenn L McGrath2003-10-312-18/+9
| | | | | the default tail options conform to SUSv3, with the non-SUS option all in FANCY_TAIL
* Fix stupid typoEric Andersen2003-10-311-1/+1
|
* Remove config options for sort -u and sort -r, they are always enabledGlenn L McGrath2003-10-311-16/+0
|
* Add a comment with link to the SUSv3 standard for xargsGlenn L McGrath2003-10-301-0/+3
|
* run through indentGlenn L McGrath2003-10-301-387/+392
|
* Patch from Dmitry Zakharov,Glenn L McGrath2003-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)
* make certain values specified in the environment always winEric Andersen2003-10-301-13/+11
|