diff options
author | Ilies CHERGUI <ilies.chergui@gmail.com> | 2021-01-17 15:52:16 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-01 16:32:06 -0500 |
commit | 2b139b3992f0a95bfc6631397574c59f44e3b7c6 (patch) | |
tree | 4be5cbe0ac862a6019627895c2faa6ba297ce094 /tools | |
parent | 1aa9c3b9308763f9b1d3e31a02276baf98245945 (diff) | |
download | u-boot-2b139b3992f0a95bfc6631397574c59f44e3b7c6.tar.gz u-boot-2b139b3992f0a95bfc6631397574c59f44e3b7c6.tar.xz u-boot-2b139b3992f0a95bfc6631397574c59f44e3b7c6.zip |
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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/fit_check_sign.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/fit_check_sign.c b/tools/fit_check_sign.c index 9375d5cf72..5573842d25 100644 --- a/tools/fit_check_sign.c +++ b/tools/fit_check_sign.c @@ -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); } |