diff options
author | Glenn L McGrath | 2003-05-11 14:52:39 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-05-11 14:52:39 +0000 |
commit | 1e11c34be4decfef8fbda8a8e01cd60def8232e5 (patch) | |
tree | 6e93956fef2bcd4c1db18031dc081dcaf689f2d1 /include/applets.h | |
parent | 8c6887c855460ee9e688e2a51e29f99faa2a2d8c (diff) | |
download | busybox-1e11c34be4decfef8fbda8a8e01cd60def8232e5.zip busybox-1e11c34be4decfef8fbda8a8e01cd60def8232e5.tar.gz |
minit, a Minimal init system.
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 668c849..6697be5 100644 --- a/include/applets.h +++ b/include/applets.h @@ -358,6 +358,9 @@ #ifdef CONFIG_MESG APPLET(mesg, mesg_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_MINIT + APPLET(minit, minit_main, _BB_DIR_SBIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_MKDIR APPLET(mkdir, mkdir_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif @@ -388,6 +391,9 @@ #ifdef CONFIG_MSH APPLET_NOUSAGE("msh", msh_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_MSVC + APPLET(msvc, msvc_main, _BB_DIR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_MT APPLET(mt, mt_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif @@ -415,6 +421,9 @@ #ifdef CONFIG_PASSWD APPLET(passwd, passwd_main, _BB_DIR_USR_BIN, _BB_SUID_ALWAYS) #endif +#ifdef CONFIG_PIDFILEHACK + APPLET(pidfilehack, pidfilehack_main, _BB_DIR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_PIDOF APPLET(pidof, pidof_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif |