diff options
| author | Simon Glass <[email protected]> | 2021-09-25 19:43:28 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-10-08 15:53:27 -0400 |
| commit | fa13940740e5ce1822611205bb8ac329c91306fd (patch) | |
| tree | 4d38078c252e1b0958da08a118a3195e17633de1 /common | |
| parent | 3ac0f504125e2f97364ba8cc6bc95c1e350bd35a (diff) | |
image: Drop IMAGE_ENABLE_IGNORE
We can use the new host_build() function for this, so drop it.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Alexandru Gagniuc <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/image-fit.c | 2 |
1 files changed, 1 insertions, 1 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 "); |
