diff options
author | Simon Glass <sjg@chromium.org> | 2020-03-18 11:43:56 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-04-01 07:45:09 -0600 |
commit | 382cf62039f775a1aec771645e3cbc32e1e2f0e3 (patch) | |
tree | 28a5b6ca4eb063999c44ee9a1ab9af0d4cbc7317 /tools | |
parent | 390b26dc270aa3159df0c31775f91cd374a3dd3a (diff) | |
download | u-boot-382cf62039f775a1aec771645e3cbc32e1e2f0e3.tar.gz |
image: Be a little more verbose when checking signatures
It is useful to be a little more specific about what is being checked.
Update a few messages to help with this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/image-host.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/image-host.c b/tools/image-host.c index 76a361b9d6..b3ec197dc9 100644 --- a/tools/image-host.c +++ b/tools/image-host.c @@ -1034,7 +1034,8 @@ int fit_check_sign(const void *fit, const void *key) if (!cfg_noffset) return -1; - printf("Verifying Hash Integrity ... "); + printf("Verifying Hash Integrity for node '%s'... ", + fdt_get_name(fit, cfg_noffset, NULL)); ret = fit_config_verify(fit, cfg_noffset); if (ret) return ret; |