summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-03-18 11:43:56 -0600
committerSimon Glass <sjg@chromium.org>2020-04-01 07:45:09 -0600
commit382cf62039f775a1aec771645e3cbc32e1e2f0e3 (patch)
tree28a5b6ca4eb063999c44ee9a1ab9af0d4cbc7317 /common
parent390b26dc270aa3159df0c31775f91cd374a3dd3a (diff)
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 'common')
-rw-r--r--common/image-fit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-fit.c b/common/image-fit.c
index 3d0cd564d8..47fc84aa4e 100644
--- a/common/image-fit.c
+++ b/common/image-fit.c
@@ -1951,7 +1951,7 @@ int fit_image_load(bootm_headers_t *images, ulong addr,
fit_uname = fit_get_name(fit, noffset, NULL);
}
if (noffset < 0) {
- puts("Could not find subimage node\n");
+ printf("Could not find subimage node type '%s'\n", prop_name);
bootstage_error(bootstage_id + BOOTSTAGE_SUB_SUBNODE);
return -ENOENT;
}