aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-06-13 06:54:53 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-06-13 06:54:53 +0000
commiteea61780133ff976ef601b9282a8eb9ccc77b55b (patch)
treed0e98c79dff9374fc3e4229bbf3c4e43164184a0 /applets
parent29e9d58553352ba2469ad28d44e643f4314f62af (diff)
downloadbusybox-w32-eea61780133ff976ef601b9282a8eb9ccc77b55b.tar.gz
busybox-w32-eea61780133ff976ef601b9282a8eb9ccc77b55b.tar.bz2
busybox-w32-eea61780133ff976ef601b9282a8eb9ccc77b55b.zip
Add new apps md5sum uudecode uuencode, fix some minor formatting things.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@640 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rw-r--r--applets/busybox.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 9ee5d2e3a..be9aa3e83 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -189,6 +189,9 @@ const struct BB_applet applets[] = {
189#ifdef BB_MATH 189#ifdef BB_MATH
190 {"math", math_main, _BB_DIR_USR_BIN}, 190 {"math", math_main, _BB_DIR_USR_BIN},
191#endif 191#endif
192#ifdef BB_MD5SUM
193 {"md5sum", md5sum_main, _BB_DIR_USR_BIN},
194#endif
192#ifdef BB_MKDIR 195#ifdef BB_MKDIR
193 {"mkdir", mkdir_main, _BB_DIR_BIN}, 196 {"mkdir", mkdir_main, _BB_DIR_BIN},
194#endif 197#endif
@@ -324,6 +327,12 @@ const struct BB_applet applets[] = {
324#ifdef BB_UPTIME 327#ifdef BB_UPTIME
325 {"uptime", uptime_main, _BB_DIR_USR_BIN}, 328 {"uptime", uptime_main, _BB_DIR_USR_BIN},
326#endif 329#endif
330#ifdef BB_UUENCODE
331 {"uuencode", uuencode_main, _BB_DIR_USR_BIN},
332#endif
333#ifdef BB_UUDECODE
334 {"uudecode", uudecode_main, _BB_DIR_USR_BIN},
335#endif
327#ifdef BB_USLEEP 336#ifdef BB_USLEEP
328 {"usleep", usleep_main, _BB_DIR_BIN}, 337 {"usleep", usleep_main, _BB_DIR_BIN},
329#endif 338#endif