aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-06-13 06:54:53 +0000
committerEric Andersen <andersen@codepoet.org>2000-06-13 06:54:53 +0000
commit2b6ab3cbf8c486fd2faa2bec60e7b1d4ed807af1 (patch)
treed0e98c79dff9374fc3e4229bbf3c4e43164184a0 /busybox.c
parent053b1462b72feea51b3b8745662447d5f8d18fda (diff)
downloadbusybox-2b6ab3cbf8c486fd2faa2bec60e7b1d4ed807af1.tar.gz
Add new apps md5sum uudecode uuencode, fix some minor formatting things.
-Erik
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/busybox.c b/busybox.c
index 9ee5d2e3a..be9aa3e83 100644
--- a/busybox.c
+++ b/busybox.c
@@ -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