From: juhosg Date: Mon, 8 Mar 2010 17:35:07 +0000 (+0000) Subject: mktplinkfw: fix help string, and remove duplicated option X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;ds=sidebyside;h=e1065cc197ee54889dfdea625fe503ba3e124672;p=openwrt-10.03%2F.git mktplinkfw: fix help string, and remove duplicated option git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20067 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index c39fd04a4..ad422d709 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 read kernel image from the file \n" " -r read rootfs image from the file \n" " -o write output to the file \n" -" -v set image version to \n" +" -N set image vendor to \n" +" -V set image version to \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;