mktplinkfw: fix help string, and remove duplicated option
SVN-Revision: 20067
This commit is contained in:
parent
3bc81edc70
commit
4ccab48a6b
1 changed files with 3 additions and 5 deletions
|
@ -218,7 +218,8 @@ static void usage(int status)
|
||||||
" -k <file> read kernel image from the file <file>\n"
|
" -k <file> read kernel image from the file <file>\n"
|
||||||
" -r <file> read rootfs image from the file <file>\n"
|
" -r <file> read rootfs image from the file <file>\n"
|
||||||
" -o <file> write output to the file <file>\n"
|
" -o <file> write output to the file <file>\n"
|
||||||
" -v <version> set image version to <version>\n"
|
" -N <vendor> set image vendor to <vendor>\n"
|
||||||
|
" -V <version> set image version to <version>\n"
|
||||||
" -h show this screen\n"
|
" -h show this screen\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -454,7 +455,7 @@ int main(int argc, char *argv[])
|
||||||
while ( 1 ) {
|
while ( 1 ) {
|
||||||
int c;
|
int c;
|
||||||
|
|
||||||
c = getopt(argc, argv, "B:V:N:ck:r:o:v:h:");
|
c = getopt(argc, argv, "B:V:N:ck:r:o:h");
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -480,9 +481,6 @@ int main(int argc, char *argv[])
|
||||||
case 'o':
|
case 'o':
|
||||||
ofname = optarg;
|
ofname = optarg;
|
||||||
break;
|
break;
|
||||||
case 'v':
|
|
||||||
version = optarg;
|
|
||||||
break;
|
|
||||||
case 'h':
|
case 'h':
|
||||||
usage(EXIT_SUCCESS);
|
usage(EXIT_SUCCESS);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue