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 /busybox.c | |
parent | 2285f367e220af9bda9f544945007725a02032dd (diff) |
Latest and greatest
Diffstat (limited to 'busybox.c')
-rw-r--r-- | busybox.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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 |