diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-12-08 23:19:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-12-08 23:19:36 +0000 |
commit | abc0f4f8f97b36f2865986374405d091cefea107 (patch) | |
tree | ee7605752c6323682f0ef0879cc48f95bdf13e37 /applets | |
parent | 2285f367e220af9bda9f544945007725a02032dd (diff) | |
download | busybox-w32-abc0f4f8f97b36f2865986374405d091cefea107.tar.gz busybox-w32-abc0f4f8f97b36f2865986374405d091cefea107.tar.bz2 busybox-w32-abc0f4f8f97b36f2865986374405d091cefea107.zip |
Latest and greatest
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 95c294425..67a606cc4 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -27,6 +27,9 @@ static const struct Applet applets[] = { | |||
27 | #ifdef BB_CLEAR //usr/bin | 27 | #ifdef BB_CLEAR //usr/bin |
28 | {"clear", clear_main}, | 28 | {"clear", clear_main}, |
29 | #endif | 29 | #endif |
30 | #ifdef BB_CHVT //usr/bin | ||
31 | {"chvt", chvt_main}, | ||
32 | #endif | ||
30 | #ifdef BB_CP //bin | 33 | #ifdef BB_CP //bin |
31 | {"cp", cp_main}, | 34 | {"cp", cp_main}, |
32 | #endif | 35 | #endif |
@@ -51,8 +54,8 @@ static const struct Applet applets[] = { | |||
51 | #ifdef BB_FIND //usr/bin | 54 | #ifdef BB_FIND //usr/bin |
52 | {"find", find_main}, | 55 | {"find", find_main}, |
53 | #endif | 56 | #endif |
54 | #ifdef BB_CHVT //usr/bin | 57 | #ifdef BB_FREE //usr/bin |
55 | {"chvt", chvt_main}, | 58 | {"free", free_main}, |
56 | #endif | 59 | #endif |
57 | #ifdef BB_DEALLOCVT //usr/bin | 60 | #ifdef BB_DEALLOCVT //usr/bin |
58 | {"deallocvt", deallocvt_main}, | 61 | {"deallocvt", deallocvt_main}, |
@@ -170,6 +173,9 @@ static const struct Applet applets[] = { | |||
170 | {"swapon", swap_on_off_main}, | 173 | {"swapon", swap_on_off_main}, |
171 | {"swapoff", swap_on_off_main}, | 174 | {"swapoff", swap_on_off_main}, |
172 | #endif | 175 | #endif |
176 | #ifdef BB_TAIL //usr/bin | ||
177 | {"tail", tail_main}, | ||
178 | #endif | ||
173 | #ifdef BB_TAR //bin | 179 | #ifdef BB_TAR //bin |
174 | {"tar", tar_main}, | 180 | {"tar", tar_main}, |
175 | #endif | 181 | #endif |