tools/fit_check_sign.c: Update usage function.

Add "-c" option to set the configuration name when
checking the FIT image signature.

Signed-off-by: Ilies CHERGUI <ilies.chergui@gmail.com>
This commit is contained in:
Ilies CHERGUI 2021-01-17 15:52:16 +00:00 committed by Tom Rini
parent 1aa9c3b930
commit 2b139b3992
1 changed files with 3 additions and 2 deletions

View File

@ -25,9 +25,10 @@
void usage(char *cmdname)
{
fprintf(stderr, "Usage: %s -f fit file -k key file\n"
fprintf(stderr, "Usage: %s -f fit file -k key file -c config name\n"
" -f ==> set fit file which should be checked'\n"
" -k ==> set key file which contains the key'\n",
" -k ==> set key file which contains the key'\n"
" -c ==> set the configuration name'\n",
cmdname);
exit(EXIT_FAILURE);
}