Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-04-20 | fix printf warning | Mike Frysinger | |
2005-04-16 | Patch from Bernhard Fischer to make a bunch of symbols static | Eric Andersen | |
which were otherwise cluttering the global namespace. | |||
2005-03-01 | When filling the bit buffer, gzip decompression apparently never checked for ↵ | Manuel Novoa III | |
end of file, causing it to hang on corrupted input. | |||
2004-11-16 | Don't document compiler warnings. _FIX_ compiler warnings. | Rob Landley | |
2004-10-13 | Make certain clients of bb_make_directory default to honoring | Eric Andersen | |
the user's umask | |||
2004-10-08 | egor duda writes: | Eric Andersen | |
Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor | |||
2004-08-28 | Fixup some warnings | Eric Andersen | |
2004-07-26 | BusyBox has no business hard coding the number of major and minor bits for a | Eric Andersen | |
dev_t. This is especially important now that the user space concept of a dev_t and the kernel concept of a dev_t are divergant. The only bit of user space allowed to know the number of major and minor bits is include/sys/sysmacros.h (i.e. part of libc). When used with a current C library and a 2.6.x kernel, this fix should allow BusyBox to support wide device major/minor numbers. -Erik | |||
2004-04-29 | Fix symlink handling and small memory leak | Glenn L McGrath | |
2004-04-25 | Update my email address, document some of my tasks in the AUTHORS file | Glenn L McGrath | |
2004-04-14 | Larry Doolittle writes: | Eric Andersen | |
This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry | |||
2004-04-09 | Add a comment explaining why we have to check for an extra \n | Glenn L McGrath | |
2004-04-05 | rename uncompress.c to decompress_uncompress.c | Eric Andersen | |
rename unzip.c to decompress_unzip.c | |||
2004-03-27 | Add missing include files | Eric Andersen | |
2004-03-27 | s/fileno\(stdin\)/STDIN_FILENO/g | Eric Andersen | |
s/fileno\(stdout\)/STDOUT_FILENO/g | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2004-02-21 | Sometimes i get carried away with the use of function pointers, im sure | Glenn L McGrath | |
it seemed like a good idea at the time. | |||
2004-02-20 | Fix up hard links | Glenn L McGrath | |
2004-02-20 | A strict interpretation of the ustar format requires the type flag to be | Glenn L McGrath | |
interpreted, we cannot depend on the file type being set in the mode field. | |||
2004-02-19 | Add extra comments, freakout if a pax archive is encoutered. | Glenn L McGrath | |
2004-02-17 | Remove debugging | Glenn L McGrath | |
2004-02-17 | Dont strip trailing '/' until _after_ i test to set if its there ! | Glenn L McGrath | |
2004-01-04 | Fix usage with libraries, skip symbol table. | Glenn L McGrath | |
2003-12-22 | Fix a bug of mine where extracting files to stdout would extract to | Glenn L McGrath | |
much, modified patch from Bastian Blank | |||
2003-12-21 | Don't hose up perms for files that happen to have symlinks | Eric Andersen | |
in the tarball that point to them. -Erik | |||
2003-11-27 | Fix tar hard links | 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-20 | Remove unused function | Glenn L McGrath | |
2003-11-20 | Fix tar-handles-nested-exclude testcase | Glenn L McGrath | |
2003-11-20 | Dont attempt to unlink directories | 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-17 | Dont free filename, its needed in the extracted files list. | 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 | 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 | 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-07 | This appears to be the correct fix to make CONFIG_FEATURE_DEB_TAR_BZ2 | Eric Andersen | |
support compile. Glenn, you may want to verify this. -Erik | |||
2003-11-07 | fix comment | Eric Andersen | |
2003-11-05 | Fix tar -j support | Glenn L McGrath | |
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. | |||
2003-10-31 | Put back the tar support stubs (and warnings) for now. | Eric Andersen | |
2003-10-31 | Fix stupid typo | Eric Andersen | |
2003-10-28 | Add some error messages, use xmalloc instead of malloc | Glenn L McGrath | |
2003-10-28 | Conditionally compile some files. | Glenn L McGrath | |
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. | |||
2003-10-23 | Another bzip2 update and speedup from Manuel Novoa III, with some | Eric Andersen | |
additional changes (primarily lots of comments) from Rob Landley. |