diff options
author | Tom Rini <trini@konsulko.com> | 2022-08-31 19:32:31 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-31 19:32:31 -0400 |
commit | 4e10c1227aa879af809b3073bf917289f23e17d7 (patch) | |
tree | 682c915d732c07d017a00278ae76fdea6f00b003 /cmd/ximg.c | |
parent | 1573b6a86993fcf80d4badc866a46b78df7e6bda (diff) | |
parent | f4b540e25c5c63fd55a80c78a22b2f69ecb848f8 (diff) |
Merge branch '2022-08-31-assorted-fixes'
- Assorted bugfixes including re-working the i2c command CVE and fixing
some TI reference platforms with different EEPROMs.
Diffstat (limited to 'cmd/ximg.c')
-rw-r--r-- | cmd/ximg.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cmd/ximg.c b/cmd/ximg.c index 65ba41320a..f84141ff45 100644 --- a/cmd/ximg.c +++ b/cmd/ximg.c @@ -171,11 +171,8 @@ do_imgextract(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) return 1; } - if (fit_image_get_comp(fit_hdr, noffset, &comp)) { - puts("Could not find script subimage " - "compression type\n"); - return 1; - } + if (fit_image_get_comp(fit_hdr, noffset, &comp)) + comp = IH_COMP_NONE; data = (ulong)fit_data; len = (ulong)fit_len; |