]> git.dujemihanovic.xyz Git - u-boot.git/commit
lib: fdtdec: Parse the gzip/lzo headers only when dependencies have met
authorLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Tue, 1 Oct 2024 09:56:47 +0000 (10:56 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 17 Oct 2024 21:01:14 +0000 (15:01 -0600)
commit22371048ed4646376ec71061930f15d5e4181c07
tree90ecfe5ad65da2b9d5b097f646eb6f9dbef42324
parent3435486f367d341cd143425c3ff9d307380d2935
lib: fdtdec: Parse the gzip/lzo headers only when dependencies have met

It might happen that CONFIG_GZIP and CONFIG_LZO are enabled but we might
have CONFIG_MULTI_DTB_FIT_LZO enabled in this case in the code path of
uncompress_blob() we parse the gzip headers first which results in
`Error: Bad gzipped data` being printed. To avoid this parse the gzip/lzo
headers only when dependencies have met.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
lib/fdtdec.c