fix mkfs --verbose and man page

mkfs did not actually accept the long form --verbose option.
Also the man page seemed to indicate that version/verbose/help
options were passed to the filesystem specific utility when this
is not the case.

Signed-off-by: Phillip Susi <psusi@ubuntu.com>
This commit is contained in:
Phillip Susi 2014-02-07 17:01:20 -05:00 committed by Karel Zak
parent b2d97db8c8
commit b5ab5bec73
2 changed files with 2 additions and 6 deletions

View File

@ -53,8 +53,6 @@ If not specified, the default filesystem type
.TP
.I fs-options
Filesystem-specific options to be passed to the real filesystem builder.
Although not guaranteed, the following options are supported
by most filesystem builders.
.TP
.BR \-V , " \-\-verbose"
Produce verbose output, including all filesystem-specific commands
@ -73,10 +71,7 @@ Display help text and exit.
.SH BUGS
All generic options must precede and not be combined with
filesystem-specific options.
Some filesystem-specific programs do not support the
.B -V
(verbose) option, nor return meaningful exit codes.
Also, some filesystem-specific programs do not automatically
Some filesystem-specific programs do not automatically
detect the device size and require the
.I size
parameter to be specified.

View File

@ -73,6 +73,7 @@ int main(int argc, char **argv)
static const struct option longopts[] = {
{"type", required_argument, NULL, 't'},
{"version", no_argument, NULL, VERSION_OPTION},
{"verbose", no_argument, NULL, 'V'},
{"help", no_argument, NULL, 'h'},
{NULL, 0, NULL, 0}
};