fli4l
  1. fli4l

busybox

Public
AuthorCommitMessageCommit dateIssues
Glenn L McGrathGlenn L McGrath
d85421de223Include stdint.h
Glenn L McGrathGlenn L McGrath
931ae9d2f8awoops, we needed that function
Glenn L McGrathGlenn L McGrath
0c5d9c27a5fCOMPRESS, not UNCOMPRESS
Glenn L McGrathGlenn L McGrath
7370f624935Update usage for tar -Z
Glenn L McGrathGlenn L McGrath
0b6539f7f9fUpdate md5sum, sha1sum options, patch by Steven Scholz
Glenn L McGrathGlenn L McGrath
56f16b42c93tar -Z, uncompress support
Glenn L McGrathGlenn L McGrath
20872be9a4eDont close original file handle, we may need it later.
Glenn L McGrathGlenn L McGrath
3b9fc8fe2a0Make unlink old files default behaviour and add a new option -k toprevent overwritting existing files
Glenn L McGrathGlenn L McGrath
de3ea9f0491Only use getopt and associated flags if checking is enabled
Glenn L McGrathGlenn L McGrath
aee0fd83205Replaced by md5_sha1_sum.c
Glenn L McGrathGlenn L McGrath
303b7d83f0fReplaced by md5_sha1_sum.c
Glenn L McGrathGlenn L McGrath
f074afc2a0cDont free filename, its needed in the extracted files list.
Glenn L McGrathGlenn L McGrath
cccf49fb0faThis was made obsolete by config-udeb-linux-i386
Glenn L McGrathGlenn L McGrath
7e4b3347b24Remove net-udeb flavour, we dotn use it
Glenn L McGrathGlenn L McGrath
0874a613d2bUse the PROG variable instead of 'busybox' in the release target
Glenn L McGrathGlenn L McGrath
8dc8cb133c4Fix a bug where cpio wouldnt work unless -u was specified
Glenn L McGrathGlenn L McGrath
5699b8525e8Move from read_gz to the pipe()+fork() method.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.
Glenn L McGrathGlenn L McGrath
54ac057c001Fix memory leaks
Glenn L McGrathGlenn L McGrath
5c2c8eca4a1Fix a "broken pipe" problem.vodz, last_patch_116-2
Glenn L McGrathGlenn L McGrath
e57feeb9e60Keep trying to find a good header, if we exit it will cause .tar.gzfiles to compute incorrect crc and length for gzip
Glenn L McGrathGlenn L McGrath
eba86e2adbdCatch unsupported features
Glenn L McGrathGlenn L McGrath
e9080c9f417NEW APPLET: pipe_progress, used by debian installer
Glenn L McGrathGlenn L McGrath
7b215b99b2cFix build error with tar -j
Glenn L McGrathGlenn L McGrath
1a41db8eaf5Remove some tar_gz stuff that get dragged in
Glenn L McGrathGlenn L McGrath
94cf153c2bcRemove debugging noise.
Glenn L McGrathGlenn L McGrath
d09bcecda80Read in blocks rather than one char at a time, greatly improves speed
Eric AndersenEric Andersen
5f28455c6efOskar Liljeblad writes:Here's a fix for the hard-coded device name in fbset.
Eric AndersenEric Andersen
b6e58d2b9a0Michael Smith writes: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...
Eric AndersenEric Andersen
c16686c1e2eUlrich Marx writes: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):
Eric AndersenEric Andersen
61b038acccbSteven Seeger writes: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 wi...
Eric AndersenEric Andersen
8211db5af0eVladimir N. Oleynik (vodz) writes: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
Eric AndersenEric Andersen
e0c83af4ce5Marc Kleine-Budde noticed a missing semicolon
Glenn L McGrathGlenn L McGrath
d2a897aab08Merge common parts of sha1sum and md5sum, which is everything except thealgorithms. Move algorithms to hash_fd and make them available via a common function.
Eric AndersenEric Andersen
0bdf41ad7e8Add some basic cvs usage info
Eric AndersenEric Andersen
bbce615c7ebRob Landley writes:Remove three entries in defconfig that config no longer has. Rob
Eric AndersenEric Andersen
2849209db20Patch from Steven Scholz to send the output from 'time' 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.
Eric AndersenEric Andersen
28d4e16cd7cThis appears to be the correct fix to make CONFIG_FEATURE_DEB_TAR_BZ2support compile. Glenn, you may want to verify this. -Erik
Eric AndersenEric Andersen
d2160aaeab9fix comment
Tim RikerTim Riker
b1ffba04013wrap bb help output if CONFIG_FEATURE_AUTOWIDTH
Eric AndersenEric Andersen
1b1942f93dbAs vodz pointed out, setting unset_env to NULL is sufficient
Glenn L McGrathGlenn L McGrath
7f9de02ca6aRewrite, 800+ bytes smaller and more robust.
Eric AndersenEric Andersen
5912acb6709By popular demand, revert to version 1.21, since Rules.mak:1.22causes the build to ignore CROSS_COMPILER_PREFIX set in .config
Glenn L McGrathGlenn L McGrath
2685724e237Fix tar -j support 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 b...There have been problems with this method so if you see a "Short read" error let me know.
Eric AndersenEric Andersen
6d687817a84Fix oversight with CONFIG_FEATURE_AUTOWIDTH handling
Eric AndersenEric Andersen
b7077a7316fSet unset_env pointing to a NULL item, to prevent us from walkingoff the end of the list and segfaulting. -Erik
Eric AndersenEric Andersen
04d055f4e11Fix rdate and ftpget/ftpput so they compile with the new xconnect.I have checked rdate. Someone should also check ftpget/ftpput to be sure they still work.
Eric AndersenEric Andersen
f6067beaa94Avoid conflicts with the 2.6 kernel headers, which define_IOR rather differently, thereby breaking the BLKGETSIZE64 ioctl. -Erik
Eric AndersenEric Andersen
e6dc439b3a3Rework wget, the xconnect interface, and its various clients in order to fix the problems with round robin DNS reported by Andrew Flegg: http://busybox.net/lists/busybox/2003-October/009579.htmlThis 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
Eric AndersenEric Andersen
8179cf2b78aPut back the tar support stubs (and warnings) for now.
Eric AndersenEric Andersen
252183e3f53Try to make indent formatting less horrible