From: Simon Glass Date: Sun, 26 Sep 2021 01:43:28 +0000 (-0600) Subject: image: Drop IMAGE_ENABLE_IGNORE X-Git-Tag: v2022.01~96^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa13940740e5ce1822611205bb8ac329c91306fd;p=platform%2Fkernel%2Fu-boot.git image: Drop IMAGE_ENABLE_IGNORE We can use the new host_build() function for this, so drop it. Signed-off-by: Simon Glass Reviewed-by: Alexandru Gagniuc --- diff --git a/common/image-fit.c b/common/image-fit.c index 17c6d4e..f44f552 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 e190f59..a236180 100644 --- a/include/image.h +++ b/include/image.h @@ -27,7 +27,6 @@ struct fdt_region; #include #include -#define IMAGE_ENABLE_IGNORE 0 #define IMAGE_INDENT_STRING "" #else @@ -37,8 +36,6 @@ struct fdt_region; #include #include -/* Take notice of the 'ignore' property for hashes */ -#define IMAGE_ENABLE_IGNORE 1 #define IMAGE_INDENT_STRING " " #endif /* USE_HOSTCC */