diff options
author | Tom Rini <trini@konsulko.com> | 2024-10-18 22:32:45 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-18 22:32:45 -0600 |
commit | 7036abbd5c3934059b020d5fd5bcb8b3bf3c788c (patch) | |
tree | 0fb8fd19b51862cf5742ec68ef889e4ad441dde7 /tools/image-host.c | |
parent | f83e36fd83c74b4e28a45a9d56abc4ad9b7848b9 (diff) | |
parent | 44917d586657eeae0401bc29af80011a264002e7 (diff) |
Merge tag 'dm-pull-17oct24-take2' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
A few new x86 commands and minor improvements
expo improvements
binman support for signing FIT images
Diffstat (limited to 'tools/image-host.c')
-rw-r--r-- | tools/image-host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/image-host.c b/tools/image-host.c index 49ce7436bb9..5e01b853c50 100644 --- a/tools/image-host.c +++ b/tools/image-host.c @@ -1333,7 +1333,7 @@ int fit_add_verification_data(const char *keydir, const char *keyfile, if (ret) { fprintf(stderr, "Can't add verification data for node '%s' (%s)\n", fdt_get_name(fit, noffset, NULL), - fdt_strerror(ret)); + strerror(-ret)); return ret; } } |