[PATCH v5 15/29] image: Drop IMAGE_ENABLE_IGNORE
Alex G.
mr.nuke.me at gmail.com
Tue Oct 5 20:58:53 CEST 2021
On 9/25/21 8:43 PM, Simon Glass wrote:
> We can use the new host_build() function for this, so drop it.
s/host_build/tools_build/
> Signed-off-by: Simon Glass <sjg at chromium.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me at gmail.com>
> ---
>
> (no changes since v1)
>
> common/image-fit.c | 2 +-
> include/image.h | 3 ---
> 2 files changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/common/image-fit.c b/common/image-fit.c
> index 17c6d4e7813..f44f5527b9f 100644
> --- a/common/image-fit.c
> +++ b/common/image-fit.c
> @@ -1277,7 +1277,7 @@ static int fit_image_check_hash(const void *fit, int noffset, const void *data,
> }
> printf("%s", algo);
>
> - if (IMAGE_ENABLE_IGNORE) {
> + if (!tools_build()) {
> fit_image_hash_get_ignore(fit, noffset, &ignore);
> if (ignore) {
> printf("-skipped ");
> diff --git a/include/image.h b/include/image.h
> index e190f59232d..a236180ccdd 100644
> --- a/include/image.h
> +++ b/include/image.h
> @@ -27,7 +27,6 @@ struct fdt_region;
> #include <sys/types.h>
> #include <linux/kconfig.h>
>
> -#define IMAGE_ENABLE_IGNORE 0
> #define IMAGE_INDENT_STRING ""
>
> #else
> @@ -37,8 +36,6 @@ struct fdt_region;
> #include <command.h>
> #include <linker_lists.h>
>
> -/* Take notice of the 'ignore' property for hashes */
> -#define IMAGE_ENABLE_IGNORE 1
> #define IMAGE_INDENT_STRING " "
>
> #endif /* USE_HOSTCC */
>
More information about the U-Boot
mailing list