diff options
author | Matt Kraai <kraai@debian.org> | 2001-08-01 17:21:35 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-08-01 17:21:35 +0000 |
commit | 2d91deba45d5a284614e06cc55e2be03599ca26d (patch) | |
tree | 0ba0d2096b4305465ddea8532a5931cb4c02b343 /include | |
parent | 00344431402703089c6b93f6119f9966cc7ba566 (diff) |
Allow multiple shells to be enabled.
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 22 | ||||
-rw-r--r-- | include/usage.h | 6 |
2 files changed, 23 insertions, 5 deletions
diff --git a/include/applets.h b/include/applets.h index 0786c39eb..184bce09b 100644 --- a/include/applets.h +++ b/include/applets.h @@ -52,6 +52,9 @@ #ifdef BB_AR APPLET(ar, ar_main, _BB_DIR_USR_BIN) #endif +#ifdef BB_ASH + APPLET_NOUSAGE("ash", ash_main, _BB_DIR_BIN) +#endif #ifdef BB_BASENAME APPLET(basename, basename_main, _BB_DIR_USR_BIN) #endif @@ -185,6 +188,9 @@ #ifdef BB_HOSTNAME APPLET(hostname, hostname_main, _BB_DIR_BIN) #endif +#ifdef BB_HUSH + APPLET_NOUSAGE("hush", hush_main, _BB_DIR_BIN) +#endif #ifdef BB_ID APPLET(id, id_main, _BB_DIR_USR_BIN) #endif @@ -206,6 +212,9 @@ #ifdef BB_KLOGD APPLET(klogd, klogd_main, _BB_DIR_SBIN) #endif +#ifdef BB_LASH + APPLET(lash, lash_main, _BB_DIR_BIN) +#endif #ifdef BB_LENGTH APPLET(length, length_main, _BB_DIR_USR_BIN) #endif @@ -272,6 +281,9 @@ #ifdef BB_MOUNT APPLET(mount, mount_main, _BB_DIR_BIN) #endif +#ifdef BB_MSH + APPLET_NOUSAGE("msh", msh_main, _BB_DIR_BIN) +#endif #ifdef BB_MT APPLET(mt, mt_main, _BB_DIR_BIN) #endif @@ -344,8 +356,14 @@ #ifdef BB_SETKEYCODES APPLET(setkeycodes, setkeycodes_main, _BB_DIR_USR_BIN) #endif -#ifdef BB_SH - APPLET(sh, shell_main, _BB_DIR_BIN) +#ifdef BB_FEATURE_SH_IS_ASH + APPLET_NOUSAGE("sh", ash_main, _BB_DIR_BIN) +#elif defined(BB_FEATURE_SH_IS_HUSH) + APPLET_NOUSAGE("sh", hush_main, _BB_DIR_BIN) +#elif defined(BB_FEATURE_SH_IS_LASH) + APPLET_NOUSAGE("sh", lash_main, _BB_DIR_BIN) +#elif defined(BB_FEATURE_SH_IS_MSH) + APPLET_NOUSAGE("sh", msh_main, _BB_DIR_BIN) #endif #ifdef BB_SLEEP APPLET(sleep, sleep_main, _BB_DIR_BIN) diff --git a/include/usage.h b/include/usage.h index 08da42b27..13759d23f 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1365,12 +1365,12 @@ #define setkeycodes_example_usage \ "$ setkeycodes e030 127\n" -#define sh_trivial_usage \ +#define lash_trivial_usage \ "[FILE]...\n" \ "or: sh -c command [args]..." -#define sh_full_usage \ +#define lash_full_usage \ "lash: The BusyBox LAme SHell (command interpreter)" -#define sh_notes_usage \ +#define lash_notes_usage \ "This command does not yet have proper documentation.\n" \ "\n" \ "Use lash just as you would use any other shell. It properly handles pipes,\n" \ |