diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-03-08 17:35:07 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-03-08 17:35:07 +0000 |
commit | be8c626c2077dbcacf45437d31d57a4038954718 (patch) | |
tree | aa764678290f0d1ab1700d14257135a60fcf277f /tools/firmware-utils | |
parent | 9d76eabe4506d72ea72ce2fcd474f8bb9530c71b (diff) | |
download | upstream-be8c626c2077dbcacf45437d31d57a4038954718.tar.gz upstream-be8c626c2077dbcacf45437d31d57a4038954718.tar.bz2 upstream-be8c626c2077dbcacf45437d31d57a4038954718.zip |
mktplinkfw: fix help string, and remove duplicated option
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20067 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index c39fd04a4b..ad422d7096 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -218,7 +218,8 @@ static void usage(int status) " -k <file> read kernel 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" -" -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" ); @@ -454,7 +455,7 @@ int main(int argc, char *argv[]) while ( 1 ) { 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) break; @@ -480,9 +481,6 @@ int main(int argc, char *argv[]) case 'o': ofname = optarg; break; - case 'v': - version = optarg; - break; case 'h': usage(EXIT_SUCCESS); break; |