From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiko Schocher Date: Sun, 9 Feb 2014 06:34:49 +0100 Subject: [U-Boot] [PATCH v2 1/8] tools/image-host: fix sign-images bug In-Reply-To: <1391924096-13253-1-git-send-email-hs@denx.de> References: <1391924096-13253-1-git-send-email-hs@denx.de> Message-ID: <1391924096-13253-2-git-send-email-hs@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de property "sign-images" is never found, fix this. Signed-off-by: Heiko Schocher Acked-by: Simon Glass --- changes for v2: - add Acked-by from Simon Glass tools/image-host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/image-host.c b/tools/image-host.c index 0d5c88c..8e185ec 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; -- 1.8.3.1