Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-09-29 | busybox.c: ENABLE_LOCALE logic correct. | "Vladimir N. Oleynik" | |
2005-09-05 | remove infinity loop ./busybox --help busybox | "Vladimir N. Oleynik" | |
2005-09-05 | Fixes so "make allnoconfig" works again. | Rob Landley | |
The configure system's save function edited out sub-menus that wouldn't be displayed in the current configuration, meaning config.h wouldn't have #udef entries for those symbols, meaning bb_config.h would have the relevant ENABLE_ missing instead of defined to 0. This broke the build. So I fixed it, and then reorganized the applets.c and busybox.c to take away the warnings this revealed (code that would be optimized out was making calls to functions that hadn't been prototyped. So I added an #else case to those #ifdefs to #define the relevant functions to empty macros to placate the warnings. I also reorganized the applets.c code to make adding such an #else case less of a pain (and make the need for prototyping go away by moving the functions up before they were used, and generally wind up with fewer #ifdefs in the code by putting all the logic in one place). This resulted in a huge seeming patch, when most if it just moves code from one place to another without touching it... Upside: make allyesconfig and make allnoconfig should both work now. | |||
2005-09-04 | General cleanup of command line parsing to allow "busybox" to work as a prefix. | Rob Landley | |
(I.E. any argv[0] that starts with "busybox" winds up in busybox_main().) Added testing/busybox.tests which tests the following permutations: ./busybox ./busybox-suffix ./busybox cat ./busybox-suffix cat ./busybox --help ./busybox-suffix --help ./busybox --help cat ./busybox-suffix --help cat ./busybox --help unknown ./busybox-suffix --help unknown ./unknown Also repair the test suite so ./runtest calls the ".tests" scripts properly. Note: you can now go "busybox busybox busbox ls -l" and it'll take it. The new code is pretty generic. I can block that if anybody can come up with a good reason to... | |||
2005-04-22 | output busybox help to stdout, not stderr | Mike Frysinger | |
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2003-11-07 | wrap bb help output if CONFIG_FEATURE_AUTOWIDTH | Tim Riker | |
2003-10-04 | Woops, the previous patch reversal wasnt complete, breaking everything. | Glenn L McGrath | |
2003-10-03 | Reverse my previous changes and make a note about why its dont this way | Glenn L McGrath | |
2003-10-03 | argc has already been decremented | Glenn L McGrath | |
2003-10-03 | Patch from Rob Landley, Simplify organisation of arguments. | Glenn L McGrath | |
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2002-04-06 | Apply lash_patch35 from vodz, which brings several nice size_optimizations. | Eric Andersen | |
2001-12-18 | Vodz' last_patch31 | Eric Andersen | |
Very minimal last corrections: 1) busybox.c: fix warining 2) docs/: add applets for list from pwd_grp 3) usage.h: add -n option for route 4) run_parts.c: many todo fix for busybox style 5) addgroup.c: add #ifdef CONFIG_FEATURE_SHADOWPASSWDS, reduce one perror_msg 6) adduser.c: fix bug "variable i not initialize" and add #ifdef CONFIG_FEATURE_SHADOWPASSWDS | |||
2001-10-24 | Major rework of the directory structure and the entire build system. | Eric Andersen | |
-Erik | |||
2001-08-27 | Fix invocation of `-/bin/sh' (bug #1209). | Matt Kraai | |
2001-06-21 | Per a suggestion from Tom Oehser, fix up the leading-hyphen hack to | Eric Andersen | |
make it general. Now all leading single hyphens are ignored for purposed of applet name matching, while argv[0] is still passed unaltered to applets, so leading-hyphen sensitive applets (such as sh) can react accordingly. -Erik | |||
2001-05-23 | Patch from larry to fix some grammar errors. | Eric Andersen | |
2001-05-13 | Make the locale stuff only do the getpid==1 check if BB_INIT is defined | Eric Andersen | |
2001-05-07 | Per some comments from Lars Kellogg-Stedman <lars@larsshack.org>, | Eric Andersen | |
make xreadlink() return NULL on failure, and make sure everyone uses the interface correctly. -Erik | |||
2001-04-30 | Made new xreadlink function for libbb and changed applets to use it instead of | Mark Whitley | |
readlink(2). | |||
2001-04-25 | Move messages.c to libbb. Make each string in messages.c be its own .o file. | Eric Andersen | |
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 | |||
2001-04-09 | Apply Vladimir's latest cleanup patch. | Eric Andersen | |
-Erik | |||
2001-04-03 | Make 'busybox --help' work as expected, closing bug #1139 | Eric Andersen | |
-Erik | |||
2001-03-20 | Force applet_name to be "sh" when command prefaced by "-" | Eric Andersen | |
2001-03-19 | Patch from Vladimir to move struct applet from busybox.c to applets.c, | Eric Andersen | |
which looks like the right place for such things to live. | |||
2001-03-02 | Changed exit code from -1 to 0 when busybox is invoked with no args. | Mark Whitley | |
(Closes bug #1114.) | |||
2001-02-20 | It turns out that DODMALLOC was broken when I reorganized busybox.h | Eric Andersen | |
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 | |||
2001-02-14 | This patch, put together by Manuel Novoa III, is a merge of work | Eric Andersen | |
done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. | |||
2001-02-01 | Create find_applet_by_name function. Save 32 bytes. | Matt Kraai | |
2001-01-31 | Removed trailing \n from error_msg{,_and_die} messages. | Matt Kraai | |
2001-01-27 | Fix some formatting | Eric Andersen | |
2001-01-27 | Fix header file usage -- there were many unnecessary header files included in | Eric Andersen | |
busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik | |||
2001-01-24 | more bugs fixed -- found doing regression testing | Eric Andersen | |
-Erik | |||
2000-12-18 | Change calls to error_msg.* and strerror to use perror_msg.*. | Matt Kraai | |
2000-12-15 | Rewrite argv munger. | Matt Kraai | |
2000-12-09 | Forget to set final argv entry to NULL, breaking sh.c amoung | Eric Andersen | |
other things... | |||
2000-12-08 | when invoked as 'busybox foo args' remove the "busybox" | Eric Andersen | |
so ps shows only what we want it to show... | |||
2000-12-07 | Changed names of functions in utility.c and all affected files, to make | Mark Whitley | |
compliant with the style guide. Everybody rebuild your tags file! | |||
2000-11-30 | Patch from Larry Doolittle (with minor touchups from me so everything compiles | Eric Andersen | |
and works) to use the applet definitions in applets.h to autogenerate the applet function and usage prototypes. | |||
2000-11-17 | Fix up builtin overrides, and hack in the binary search for finding | Eric Andersen | |
matching applets into the shell. | |||
2000-10-25 | Restore --help handling I mistakenly removed. | Matt Kraai | |
2000-10-25 | Avoid reinventing the wheel (and thus save some space). | Matt Kraai | |
2000-10-25 | Applied patch from Gaute B Strokkenes <gs234@cam.ac.uk> to use a binary search | Mark Whitley | |
to locate applets, rather than a linear search. Also, broke out the listing of applets into it's own file: applets.h. | |||
2000-10-19 | Put getopt_usage where it belongs and added *_usage entries in busybox.[ch] | Mark Whitley | |
2000-10-09 | Added cmp and readlink applets from Matt Kraai. | Mark Whitley | |
2000-09-25 | Renamed "internal.h" to the more sensible "busybox.h". | Eric Andersen | |
-Erik | |||
2000-09-25 | Fix from Matt Kraai for the to the "busybox --install prints out on STDERR | Eric Andersen | |
"File already exists" messages for all files (including the ones that DON'T exist)" problem reported by "Bruno L. F. Cabral" <bruno@openline.com.br>. Thanks Matt! -Erik | |||
2000-09-22 | Add in xargs | Eric Andersen | |
2000-09-20 | Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com. | Eric Andersen | |
-Erik |