Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-11-25 | Fix for "Broken pipe" issue, vodz last_patch116_3 | Glenn L McGrath | |
2003-11-24 | When a size of 0 is passed to copyfd_size, dont do anything, it was | Glenn L McGrath | |
reading untill eof which breaks tar | |||
2003-11-22 | Fix warning | Glenn L McGrath | |
2003-11-21 | As we no longer use function pointers for read in common archiving code | Glenn L McGrath | |
archive_xread can be replaced with bb_full_read, and archive_copy_file with bb_copyfd* bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof, they share a common backend. | |||
2003-11-21 | Use safe read | Glenn L McGrath | |
2003-11-21 | Fix warning | Glenn L McGrath | |
2003-11-21 | Make use of libbb functions bb_xopen, bb_full_read, used #define's | Glenn L McGrath | |
instead of static consts, avoid xmalloc. | |||
2003-11-20 | Remove unused function | Glenn L McGrath | |
2003-11-20 | Dont over-read fd, use function pointer for hash function. | Glenn L McGrath | |
2003-11-20 | Fix tar-handles-nested-exclude testcase | Glenn L McGrath | |
2003-11-20 | Update status of tests which should pass | Glenn L McGrath | |
2003-11-20 | remove controversial tests | Glenn L McGrath | |
2003-11-20 | Check at least one context is specified | Glenn L McGrath | |
2003-11-20 | Check there are files to add the archive before removing a specified | Glenn L McGrath | |
tar file. | |||
2003-11-20 | Dont attempt to unlink directories | Glenn L McGrath | |
2003-11-20 | Superficial changes | Glenn L McGrath | |
2003-11-20 | Fix up the -s option, and make usage consitent with behaviour, | Glenn L McGrath | |
patch by Steven Scholz | |||
2003-11-20 | Include stdint.h | Glenn L McGrath | |
2003-11-18 | woops, we needed that function | Glenn L McGrath | |
2003-11-18 | COMPRESS, not UNCOMPRESS | Glenn L McGrath | |
2003-11-18 | Update usage for tar -Z | Glenn L McGrath | |
2003-11-18 | Update md5sum, sha1sum options, patch by Steven Scholz | Glenn L McGrath | |
2003-11-18 | tar -Z, uncompress support | Glenn L McGrath | |
2003-11-18 | Dont close original file handle, we may need it later. | Glenn L McGrath | |
2003-11-18 | Make unlink old files default behaviour and add a new option -k to | Glenn L McGrath | |
prevent overwritting existing files | |||
2003-11-18 | Only use getopt and associated flags if checking is enabled | Glenn L McGrath | |
2003-11-18 | Replaced by md5_sha1_sum.c | Glenn L McGrath | |
2003-11-18 | Replaced by md5_sha1_sum.c | Glenn L McGrath | |
2003-11-17 | Dont free filename, its needed in the extracted files list. | Glenn L McGrath | |
2003-11-17 | This was made obsolete by config-udeb-linux-i386 | Glenn L McGrath | |
2003-11-17 | Remove net-udeb flavour, we dotn use it | Glenn L McGrath | |
2003-11-17 | Use the PROG variable instead of 'busybox' in the release target | Glenn L McGrath | |
2003-11-15 | Fix a bug where cpio wouldnt work unless -u was specified | Glenn L McGrath | |
2003-11-15 | Move from read_gz to the pipe()+fork() method. | Glenn L McGrath | |
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. | |||
2003-11-15 | Fix memory leaks | Glenn L McGrath | |
2003-11-14 | Fix a "broken pipe" problem. vodz, last_patch_116-2 | Glenn L McGrath | |
2003-11-14 | Keep trying to find a good header, if we exit it will cause .tar.gz | Glenn L McGrath | |
files to compute incorrect crc and length for gzip | |||
2003-11-14 | Catch unsupported features | Glenn L McGrath | |
2003-11-14 | NEW APPLET: pipe_progress, used by debian installer | Glenn L McGrath | |
2003-11-14 | Fix build error with tar -j | Glenn L McGrath | |
2003-11-14 | Remove some tar_gz stuff that get dragged in | Glenn L McGrath | |
2003-11-14 | Remove debugging noise. | Glenn L McGrath | |
2003-11-14 | Read in blocks rather than one char at a time, greatly improves speed | Glenn L McGrath | |
2003-11-14 | Oskar Liljeblad writes: | Eric Andersen | |
Here's a fix for the hard-coded device name in fbset. | |||
2003-11-14 | Michael Smith writes: | Eric Andersen | |
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. | |||
2003-11-14 | Ulrich Marx writes: | Eric Andersen | |
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): | |||
2003-11-14 | Steven Seeger writes: | Eric Andersen | |
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 | |||
2003-11-14 | Vladimir N. Oleynik (vodz) writes: | Eric Andersen | |
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 | |||
2003-11-14 | Marc Kleine-Budde noticed a missing semicolon | Eric Andersen | |
2003-11-10 | Merge common parts of sha1sum and md5sum, which is everything except the | Glenn L McGrath | |
algorithms. Move algorithms to hash_fd and make them available via a common function. |