aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-02-24The usage message for syslogd had stuff longer then 80 chars and wrapped.Eric Andersen
2001-02-24...John Beppu
2001-02-24refinementJohn Beppu
2001-02-23formatting ...John Beppu
2001-02-23Added some documentation and made --sgml use sgml_from_usage().John Beppu
pod_from_usage() is the default generator.
2001-02-23Another usage cleanup from kent robottiEric Andersen
2001-02-23During POD generation, it inserts a blank line before linesJohn Beppu
that were intended to be indented.
2001-02-23More cleanupsEric Andersen
2001-02-23forgot to remove some debugging noiseJohn Beppu
2001-02-23This one should be able to deal with the USAGE macros a littleJohn Beppu
more robustly. I also blow away any USAGE_NOT_\w+ macros.
2001-02-23Make HUMAN_READABLE be single argument like the others.Eric Andersen
2001-02-23forgot a comma.John Beppu
2001-02-23More usage cleanups from kent robotti. I know some of these wereEric Andersen
applied previously but apparently lost with some of the latest changes.
2001-02-23Fix up a stupid mistake caught by David Whedon <dwhedon@gordian.com>Eric Andersen
2001-02-23space after \ make preprocessor sadDavid Kimdon
2001-02-23utility.c must include stdarg.hDavid Kimdon
2001-02-23I can't leave it alone.John Beppu
2001-02-23minor cleanup... all that's left to do isJohn Beppu
* make headers and footers for both the POD and SGML content * make an SGML generator * finish the command-line handling Also, some of the documentation in usage.h will have to be adjusted. expr needs some lines to be indented, and ls has a stray comma. I may have missed some things... but it looks OK for the most part.
2001-02-23This is the remixed autodocufier.pl.John Beppu
2001-02-23Stub out pivot_root so it won't fail to compile.Eric Andersen
-Erik
2001-02-23Somewhere along the line, MAKE_LINKS got broken, thereby breakingEric Andersen
'make install'. Fix that.
2001-02-23Argh. I should know to compile first.Eric Andersen
2001-02-23Only default to BB_FEATURE_NEW_MODULE_INTERFACE whenEric Andersen
BB_FEATURE_OLD_MODULE_INTERFACE is not defined. -Erik
2001-02-23Make utility.c only define query_module when BB_FEATURE_NEW_MODULE_INTERFACEEric Andersen
is enabled. -Erik
2001-02-23Yet another fix. I think I got it this time.Eric Andersen
-Erik
2001-02-23I should be more careful...Eric Andersen
2001-02-22Turn off the printf attribute for the ?error_msg* functions, since itEric Andersen
is ok to pass them a NULL, unlike printf. This silences a pointless warning message. -Erik
2001-02-22Add in kent robotti's updated dos2unix.cEric Andersen
2001-02-22Fix up Makefile -- uClibc nfs works these daysEric Andersen
2001-02-22Commit a few updates to the usage messages.Eric Andersen
2001-02-22First pass at making up an automagical usage message extractor, whichEric Andersen
will be used (when it works) to autogenerate documentation. Based on code written by Mark Whitley.
2001-02-22Account for remainder, and reset page_height for each and every page.Eric Andersen
2001-02-22Make busybox and busybox-static conflict/replace each otherEric Andersen
2001-02-22Fix malformed build-depends. Update list of bugs to closeEric Andersen
-Erik
2001-02-22Make md5sum not display filename when reading stdinEric Andersen
-Erik
2001-02-22Make init compile when DEBUG_INIT is enabledEric Andersen
-Erik
2001-02-22Another update to the way usage messages are done by Evin RobertsonEric Andersen
<nitfol@my-deja.com>, which makes things just a little bit smaller, but makes usage.h more readable/maintainable IMHO. -Erik
2001-02-22Revert my change to do extra termType checking. That is done elsewhere.Eric Andersen
Silly me. -Erik
2001-02-22Adjust the terminal height for any overlap, so that no linesEric Andersen
get lost off the top -Erik
2001-02-21Oops! I left in my debug noise.Eric Andersen
2001-02-21df was totally broken. So I fixed it.Eric Andersen
-Erik
2001-02-20Small patch from Kent Robotti to show megabytes in human-readable output.Mark Whitley
2001-02-20Minor cleanup.Eric Andersen
2001-02-20Apply a patch from Magnus Damm <damm@opensource.se> to supportEric Andersen
powerpc with busybox insmod -Erik
2001-02-20Commit a patch from Erik Gustavsson <cyrano@algonet.se>, to allowEric Andersen
environment variables set from the kernel command line to be inherited bu application programs. Slightly changed to special case handling of TERM, so that it has sane defaults when on a serial console. -Erik
2001-02-20Oops. Since dirent.h depends on BB_FEATURE_SH_TAB_COMPLETION, put itEric Andersen
after busybox.h is included.
2001-02-20This fixes lash so it handles environment variable expansion, regardlessEric Andersen
of where the environment variables are located in an argument. This allows things like 'echo foo$1$SHELL' to expand the same way bash would expand it. Of course, to make this work I introduced a memory leak, and I am too tired to find a way to fix it. -Erik
2001-02-20Cleanup the use of 'find' to prevent error msgs.Eric Andersen
-Erik
2001-02-20Oops. Put time.h after busybox.h, so we can check for BB_FEATURE_LS_TIMESTAMPSEric Andersen
-Erik
2001-02-20It turns out that DODMALLOC was broken when I reorganized busybox.hEric 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