X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=wgtpkg-sign.c;h=cd506fc743057673e489df7aa2037c4b56f91c92;hb=e3c4a363ea7b03a909f9b92c6657ea9129ee53f3;hp=6a6a72a77c0570b85f399bfa1f0b0032080a62ed;hpb=38fbd847bcb58b9067ffe4bd56035ba4ccbf993b;p=src%2Fapp-framework-main.git diff --git a/wgtpkg-sign.c b/wgtpkg-sign.c index 6a6a72a..cd506fc 100644 --- a/wgtpkg-sign.c +++ b/wgtpkg-sign.c @@ -63,6 +63,8 @@ static void usage() " -d number the number of the distributor signature (zero for automatic)\n" " -a the author signature\n" " -f force overwriting\n" + " -q quiet\n" + " -v verbose\n" "\n", appname ); @@ -75,6 +77,8 @@ static struct option options[] = { { "author", no_argument, NULL, 'a' }, { "force", no_argument, NULL, 'f' }, { "help", no_argument, NULL, 'h' }, + { "quiet", no_argument, NULL, 'q' }, + { "verbose", no_argument, NULL, 'v' }, { NULL, 0, NULL, 0 } }; @@ -187,7 +191,7 @@ int main(int ac, char **av) return 1; } -printf("\n\nSIGNING content of directory %s for number %u\n", directory, number); + notice("-- SIGNING content of directory %s for number %u", directory, number); certfiles[ncert] = NULL; return !!create_digsig(number, keyfile, (const char**)certfiles);