diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 3 | ||||
-rw-r--r-- | include/usage.h | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 38d75344f..f6a840024 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -293,6 +293,9 @@ | |||
293 | #ifdef CONFIG_MD5SUM | 293 | #ifdef CONFIG_MD5SUM |
294 | APPLET(md5sum, md5sum_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) | 294 | APPLET(md5sum, md5sum_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) |
295 | #endif | 295 | #endif |
296 | #ifdef CONFIG_MESG | ||
297 | APPLET(mesg, mesg_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) | ||
298 | #endif | ||
296 | #ifdef CONFIG_MKDIR | 299 | #ifdef CONFIG_MKDIR |
297 | APPLET(mkdir, mkdir_main, _BB_DIR_BIN, _BB_SUID_NEVER) | 300 | APPLET(mkdir, mkdir_main, _BB_DIR_BIN, _BB_SUID_NEVER) |
298 | #endif | 301 | #endif |
diff --git a/include/usage.h b/include/usage.h index 98b81cf1d..ee697150b 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1149,6 +1149,13 @@ | |||
1149 | "busybox: OK\n" \ | 1149 | "busybox: OK\n" \ |
1150 | "^D\n" | 1150 | "^D\n" |
1151 | 1151 | ||
1152 | #define mesg_trivial_usage \ | ||
1153 | "mesg [y|n]" | ||
1154 | #define mesg_full_usage \ | ||
1155 | "mesg [Y|N], controls write access to your terminal\n" \ | ||
1156 | "\ty\tAllow write access to your terminal.\n" \ | ||
1157 | "\tn\tDisallow write access to your terminal.\n" | ||
1158 | |||
1152 | #define mkdir_trivial_usage \ | 1159 | #define mkdir_trivial_usage \ |
1153 | "[OPTION] DIRECTORY..." | 1160 | "[OPTION] DIRECTORY..." |
1154 | #define mkdir_full_usage \ | 1161 | #define mkdir_full_usage \ |