diff options
author | Heiko Schocher <hs@denx.de> | 2014-03-03 12:19:23 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-21 16:39:31 -0400 |
commit | 66b36f833a2ab8fedce2ce7fe6f392f85192cc3e (patch) | |
tree | 37246072cb456cd5196d45139a975ea637552b3b | |
parent | 2c072c958bb544c72f0e848375803dbd6971f022 (diff) | |
download | u-boot-imx-66b36f833a2ab8fedce2ce7fe6f392f85192cc3e.zip u-boot-imx-66b36f833a2ab8fedce2ce7fe6f392f85192cc3e.tar.gz u-boot-imx-66b36f833a2ab8fedce2ce7fe6f392f85192cc3e.tar.bz2 |
tools/image-host: fix sign-images bug
property "sign-images" is never found, fix this.
Signed-off-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
-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 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; |