Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Initialise in_file to stdin, so it wont crash if no source specified | Glenn L McGrath | 2001-06-20 | 1 | -2/+2 |
| | |||||
* | Make - read compressed data from stdin (thanks to Marius Groeger). | Matt Kraai | 2001-05-22 | 1 | -1/+1 |
| | |||||
* | woops, forgot the break statment | Glenn L McGrath | 2001-05-07 | 1 | -0/+1 |
| | |||||
* | Tolerate -q argument, if -q is passed give a warning and continue rather ↵ | Glenn L McGrath | 2001-05-07 | 1 | -1/+3 |
| | | | | than just fail | ||||
* | Move messages.c to libbb. Make each string in messages.c be its own .o file. | Eric Andersen | 2001-04-25 | 1 | -4/+0 |
| | | | | | | | This way, we can new get rid of all that tedious #define rubbish we used to need to enable specific messages. This way is enormously simpler, and as a bonus also ends up saving us 96 bytes. -Erik | ||||
* | Eliminate spurious warning, convert to getopt, and eliminate redundant check. | Matt Kraai | 2001-04-18 | 1 | -1/+3 |
| | |||||
* | Fix a number of problems with argument handling. | Matt Kraai | 2001-04-18 | 1 | -49/+29 |
| | |||||
* | Eliminate a segfault when called on an existing file with out an extension: | Matt Kraai | 2001-04-18 | 1 | -2/+2 |
| | | | | touch foo && gunzip foo | ||||
* | Fix zcat/gunzip when reading from stdin | Glenn L McGrath | 2001-04-18 | 1 | -26/+28 |
| | |||||
* | Move unzip, gz_open, gz_close to libbb | Glenn L McGrath | 2001-04-11 | 1 | -991/+6 |
| | |||||
* | gz_open and gz_close were left in, even when BB_FEATURE_TAR_GZIP was disabled. | Eric Andersen | 2001-03-29 | 1 | -0/+2 |
| | | | | Fix that. | ||||
* | Fix zcat | Glenn L McGrath | 2001-03-29 | 1 | -4/+2 |
| | |||||
* | gunzip -c works again | Glenn L McGrath | 2001-03-29 | 1 | -23/+19 |
| | |||||
* | Fixes from Robert Kaiser | Glenn L McGrath | 2001-03-28 | 1 | -6/+4 |
| | |||||
* | Remove cruft | Glenn L McGrath | 2001-03-28 | 1 | -2/+2 |
| | |||||
* | Fix tar -z, calls gz_open now | Glenn L McGrath | 2001-03-28 | 1 | -9/+8 |
| | |||||
* | Major cleanup to better adhere to style guide and use standard busybox functions | Glenn L McGrath | 2001-03-28 | 1 | -898/+724 |
| | |||||
* | Clean up more local vars which shadow globals | Eric Andersen | 2001-03-21 | 1 | -4/+4 |
| | | | | -Erik | ||||
* | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | 2001-02-20 | 1 | -1/+1 |
| | | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik | ||||
* | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | 2001-02-14 | 1 | -2/+2 |
| | | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | ||||
* | Removed trailing \n from error_msg{,_and_die} messages. | Matt Kraai | 2001-01-31 | 1 | -8/+8 |
| | |||||
* | Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch. | Eric Andersen | 2001-01-25 | 1 | -2/+2 |
| | | | | -Erik | ||||
* | #define -> static const int. Also got rid of some big static buffers. | Mark Whitley | 2001-01-23 | 1 | -24/+27 |
| | |||||
* | Support for tar -z option for uncompressing only | Glenn L McGrath | 2000-12-10 | 1 | -2/+2 |
| | |||||
* | Introduce new function gunzip_init() | Glenn L McGrath | 2000-12-10 | 1 | -32/+35 |
| | | | | gunzip_init() will make it easier to use gunzip from other bb functions. | ||||
* | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | 2000-12-07 | 1 | -11/+11 |
| | | | | compliant with the style guide. Everybody rebuild your tags file! | ||||
* | Stop using TRUE and FALSE for exit status. | Matt Kraai | 2000-12-01 | 1 | -1/+1 |
| | |||||
* | Move flush_outbuf to the file in which it is used, and by doing so fix a | Matt Kraai | 2000-11-08 | 1 | -15/+0 |
| | | | | nasty error dealing with two different variables with the same name. | ||||
* | Cleanup of duplicated symbols -- found by compiling with | Eric Andersen | 2000-11-07 | 1 | -24/+20 |
| | | | | LDFLAGS += -Wl,-warn-common | ||||
* | Fix error messages. | Matt Kraai | 2000-10-23 | 1 | -4/+4 |
| | |||||
* | General cleanup of comments, defines, includes, and global variables, ↵ | Glenn L McGrath | 2000-09-29 | 1 | -1451/+632 |
| | | | | | | | | removed those that arent needed, grouped those remaining at the top. Re-ordered functions to the order they are called. Removed static crc table, it now generates the table once for itself. Results in source reduced by 40%, so it should be a lot easier to work on in the future, binary size only reduced by under 2KB though. | ||||
* | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | 2000-09-25 | 1 | -1/+1 |
| | | | | -Erik | ||||
* | Remove definition of basename. | Glenn L McGrath | 2000-09-18 | 1 | -3/+0 |
| | | | | It was defined out so that it would never be seen, and if it was ever seen it wasnt used for anything. It also stops gunzip compiling under the Hurd. | ||||
* | Fixed a stupid thinko preventing zcat from doing its job, thanks | Eric Andersen | 2000-09-01 | 1 | -0/+1 |
| | | | | | to Torbj�rn Axelsson <torax@cendio.se> for the fix. -Erik | ||||
* | Correct the stdin/stdout behavior when no args are provided. | Eric Andersen | 2000-09-01 | 1 | -5/+5 |
| | | | | -Erik | ||||
* | Some #include updates. | Eric Andersen | 2000-08-10 | 1 | -1/+0 |
| | | | | -Erik | ||||
* | Fixed stdin/stdout paths so things like | Eric Andersen | 2000-07-21 | 1 | -9/+19 |
| | | | | | | | tar cvf - /etc/* | gzip -c9 >test.tgz will now work. Fix thanks to Dave Cinege <dcinege@psychosis.com> with some adjustments by me to be mroe GNU-like. -Erik | ||||
* | Extract usage information into a separate file. | Matt Kraai | 2000-07-16 | 1 | -13/+1 |
| | |||||
* | Use errorMsg rather than fprintf. | Matt Kraai | 2000-07-14 | 1 | -4/+3 |
| | |||||
* | Always report the applet name when doing error reporting. | Matt Kraai | 2000-07-12 | 1 | -2/+2 |
| | |||||
* | Use global applet_name instead of local versions. | Matt Kraai | 2000-07-12 | 1 | -1/+1 |
| | |||||
* | a few minor cleanups. | Eric Andersen | 2000-07-06 | 1 | -0/+1 |
| | | | | -Erik | ||||
* | Updates to a number of apps to remove warnings/compile errors under libc5. | Eric Andersen | 2000-06-19 | 1 | -1/+1 |
| | | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik | ||||
* | More libc portability updates, add in the website (which has not been | Erik Andersen | 2000-05-19 | 1 | -140/+11 |
| | | | | | archived previously). Wrote 'which' during the meeting today. -Erik | ||||
* | Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP | Erik Andersen | 2000-05-12 | 1 | -6/+11 |
| | | | | | | | | which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik | ||||
* | * cp -fa now works as expected for symlinks (it didn't before) | Erik Andersen | 2000-05-10 | 1 | -4/+5 |
| | | | | | | * zcat works again (wasn't working since option parsing was broken) * more doc updates/more support for BB_FEATURE_SIMPLE_HELP -Erik | ||||
* | Latest and greatest. Some effort at libc5 (aiming towards newlib) | Erik Andersen | 2000-04-28 | 1 | -3/+2 |
| | | | | | compatability. -Erik | ||||
* | Upates to include copyright 2000 to everything | Erik Andersen | 2000-04-13 | 1 | -80/+90 |
| | | | | -Erik | ||||
* | more minor fixes | Erik Andersen | 2000-03-19 | 1 | -6/+0 |
| | | | | -Erik | ||||
* | Updates | Erik Andersen | 2000-02-11 | 1 | -9/+7 |
| | | | | -Erik |