diff options
Diffstat (limited to 'util-linux/mkfs_minix.c')
-rw-r--r-- | util-linux/mkfs_minix.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index be180a46b..bf4bda9fd 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/mkfs_minix.c | |||
@@ -179,9 +179,10 @@ static volatile void show_usage() | |||
179 | fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n", | 179 | fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n", |
180 | BB_VER, BB_BT); | 180 | BB_VER, BB_BT); |
181 | fprintf(stderr, | 181 | fprintf(stderr, |
182 | "Usage: %s [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n\n", | 182 | "Usage: %s [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n", |
183 | program_name); | 183 | program_name); |
184 | fprintf(stderr, "Make a MINIX filesystem.\n\n"); | 184 | #ifndef BB_FEATURE_TRIVIAL_HELP |
185 | fprintf(stderr, "\nMake a MINIX filesystem.\n\n"); | ||
185 | fprintf(stderr, "OPTIONS:\n"); | 186 | fprintf(stderr, "OPTIONS:\n"); |
186 | fprintf(stderr, "\t-c\t\tCheck the device for bad blocks\n"); | 187 | fprintf(stderr, "\t-c\t\tCheck the device for bad blocks\n"); |
187 | fprintf(stderr, | 188 | fprintf(stderr, |
@@ -191,6 +192,7 @@ static volatile void show_usage() | |||
191 | fprintf(stderr, | 192 | fprintf(stderr, |
192 | "\t-l FILENAME\tRead the bad blocks list from FILENAME\n"); | 193 | "\t-l FILENAME\tRead the bad blocks list from FILENAME\n"); |
193 | fprintf(stderr, "\t-v\t\tMake a Minix version 2 filesystem\n\n"); | 194 | fprintf(stderr, "\t-v\t\tMake a Minix version 2 filesystem\n\n"); |
195 | #endif | ||
194 | exit(16); | 196 | exit(16); |
195 | } | 197 | } |
196 | 198 | ||