aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-12-08 23:19:36 +0000
committerEric Andersen <andersen@codepoet.org>1999-12-08 23:19:36 +0000
commitabc0f4f8f97b36f2865986374405d091cefea107 (patch)
treeee7605752c6323682f0ef0879cc48f95bdf13e37 /busybox.c
parent2285f367e220af9bda9f544945007725a02032dd (diff)
downloadbusybox-abc0f4f8f97b36f2865986374405d091cefea107.tar.gz
Latest and greatest
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/busybox.c b/busybox.c
index 95c294425..67a606cc4 100644
--- a/busybox.c
+++ b/busybox.c
@@ -27,6 +27,9 @@ static const struct Applet applets[] = {
#ifdef BB_CLEAR //usr/bin
{"clear", clear_main},
#endif
+#ifdef BB_CHVT //usr/bin
+ {"chvt", chvt_main},
+#endif
#ifdef BB_CP //bin
{"cp", cp_main},
#endif
@@ -51,8 +54,8 @@ static const struct Applet applets[] = {
#ifdef BB_FIND //usr/bin
{"find", find_main},
#endif
-#ifdef BB_CHVT //usr/bin
- {"chvt", chvt_main},
+#ifdef BB_FREE //usr/bin
+ {"free", free_main},
#endif
#ifdef BB_DEALLOCVT //usr/bin
{"deallocvt", deallocvt_main},
@@ -170,6 +173,9 @@ static const struct Applet applets[] = {
{"swapon", swap_on_off_main},
{"swapoff", swap_on_off_main},
#endif
+#ifdef BB_TAIL //usr/bin
+ {"tail", tail_main},
+#endif
#ifdef BB_TAR //bin
{"tar", tar_main},
#endif