diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 2 | ||||
-rw-r--r-- | include/usage.h | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index af21a0d4a..15dcbdf5e 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -155,6 +155,8 @@ USE_FDISK(APPLET(fdisk, _BB_DIR_SBIN, _BB_SUID_NEVER)) | |||
155 | USE_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, _BB_DIR_BIN, _BB_SUID_NEVER, fgrep)) | 155 | USE_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, _BB_DIR_BIN, _BB_SUID_NEVER, fgrep)) |
156 | USE_FIND(APPLET_NOEXEC(find, find, _BB_DIR_USR_BIN, _BB_SUID_NEVER, find)) | 156 | USE_FIND(APPLET_NOEXEC(find, find, _BB_DIR_USR_BIN, _BB_SUID_NEVER, find)) |
157 | USE_FINDFS(APPLET(findfs, _BB_DIR_SBIN, _BB_SUID_MAYBE)) | 157 | USE_FINDFS(APPLET(findfs, _BB_DIR_SBIN, _BB_SUID_MAYBE)) |
158 | //USE_FLASH_ERASEALL(APPLET_ODDNAME(flash_eraseall, flash_eraseall, _BB_DIR_USR_SBIN, _BB_SUID_NEVER, flash_eraseall)) | ||
159 | USE_FLASH_ERASEALL(APPLET(flash_eraseall, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)) | ||
158 | USE_FOLD(APPLET(fold, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) | 160 | USE_FOLD(APPLET(fold, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) |
159 | USE_FREE(APPLET(free, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) | 161 | USE_FREE(APPLET(free, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) |
160 | USE_FREERAMDISK(APPLET(freeramdisk, _BB_DIR_SBIN, _BB_SUID_NEVER)) | 162 | USE_FREERAMDISK(APPLET(freeramdisk, _BB_DIR_SBIN, _BB_SUID_NEVER)) |
diff --git a/include/usage.h b/include/usage.h index 52af47e58..0e606609d 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1217,6 +1217,14 @@ | |||
1217 | "$ find / -name passwd\n" \ | 1217 | "$ find / -name passwd\n" \ |
1218 | "/etc/passwd\n" | 1218 | "/etc/passwd\n" |
1219 | 1219 | ||
1220 | #define flash_eraseall_trivial_usage \ | ||
1221 | "[-jq] MTD_DEVICE" | ||
1222 | #define flash_eraseall_full_usage "\n\n" \ | ||
1223 | "Erase an MTD device\n" \ | ||
1224 | "\nOptions:" \ | ||
1225 | "\n -j format the device for jffs2" \ | ||
1226 | "\n -q don't display progress messages" | ||
1227 | |||
1220 | #define fold_trivial_usage \ | 1228 | #define fold_trivial_usage \ |
1221 | "[-bs] [-w WIDTH] [FILE]" | 1229 | "[-bs] [-w WIDTH] [FILE]" |
1222 | #define fold_full_usage "\n\n" \ | 1230 | #define fold_full_usage "\n\n" \ |