" -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"
);
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;
case 'o':
ofname = optarg;
break;
- case 'v':
- version = optarg;
- break;
case 'h':
usage(EXIT_SUCCESS);
break;