From: Heiko Schocher Date: Mon, 3 Mar 2014 11:19:23 +0000 (+0100) Subject: tools/image-host: fix sign-images bug X-Git-Tag: v2014.07-rc1~64^2~15 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=66b36f833a2ab8fedce2ce7fe6f392f85192cc3e;p=u-boot tools/image-host: fix sign-images bug property "sign-images" is never found, fix this. Signed-off-by: Heiko Schocher Acked-by: Simon Glass --- diff --git a/tools/image-host.c b/tools/image-host.c index 0d5c88ca73..8e185ec5df 100644 --- a/tools/image-host.c +++ b/tools/image-host.c @@ -403,7 +403,7 @@ static int fit_config_get_hash_list(void *fit, int conf_noffset, goto err_mem; /* Get a list of images that we intend to sign */ - prop = fit_config_get_image_list(fit, conf_noffset, &len, + prop = fit_config_get_image_list(fit, sig_offset, &len, &allow_missing); if (!prop) return 0;