diff options
author | Rob Landley <rob@landley.net> | 2005-06-20 04:30:36 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-06-20 04:30:36 +0000 |
commit | 6eb1e416743c597f8ecd3b595ddb00d3aa42c1f4 (patch) | |
tree | b88e5e3d34a2edea9bd2a9c59fd1cf84a62ddf4d /include/applets.h | |
parent | df1eda82b90d1c179b34d27f2825264efed10045 (diff) | |
download | busybox-6eb1e416743c597f8ecd3b595ddb00d3aa42c1f4.tar.gz |
Rodney Radford submitted ipcs and ipcrm (system V IPC stuff). They could use
some more work to shrink them down.
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index e0b18085a..a7578ba1a 100644 --- a/include/applets.h +++ b/include/applets.h @@ -320,6 +320,12 @@ #ifdef CONFIG_IPCALC APPLET(ipcalc, ipcalc_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_IPCRM + APPLET(ipcrm, ipcrm_main, _BB_DIR_USR_BIN, _BB_SUID_ALWAYS) +#endif +#ifdef CONFIG_IPCS + APPLET(ipcs, ipcs_main, _BB_DIR_USR_BIN, _BB_SUID_ALWAYS) +#endif #ifdef CONFIG_IPLINK APPLET(iplink, iplink_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif |