Add new apps md5sum uudecode uuencode, fix some minor formatting things.

-Erik
This commit is contained in:
Eric Andersen
2000-06-13 06:54:53 +00:00
parent 053b1462b7
commit 2b6ab3cbf8
16 changed files with 3318 additions and 10 deletions

View File

@ -189,6 +189,9 @@ const struct BB_applet applets[] = {
#ifdef BB_MATH
{"math", math_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_MD5SUM
{"md5sum", md5sum_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_MKDIR
{"mkdir", mkdir_main, _BB_DIR_BIN},
#endif
@ -324,6 +327,12 @@ const struct BB_applet applets[] = {
#ifdef BB_UPTIME
{"uptime", uptime_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_UUENCODE
{"uuencode", uuencode_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_UUDECODE
{"uudecode", uudecode_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_USLEEP
{"usleep", usleep_main, _BB_DIR_BIN},
#endif