fit: Do not automatically decompress ramdisk images
authorJulius Werner <jwerner@chromium.org>
Fri, 2 Aug 2019 22:52:28 +0000 (15:52 -0700)
committerTom Rini <trini@konsulko.com>
Wed, 7 Aug 2019 19:31:05 +0000 (15:31 -0400)
commitbddd985734653c366c8da073650930fb2e9b5003
treebf679ea3c896aa1fa1fac55720408726aa963318
parent13551b911416044dede2311935f34b29095c8dba
fit: Do not automatically decompress ramdisk images

The Linux ramdisk should always be decompressed by the kernel itself,
not by U-Boot. Therefore, the 'compression' node in the FIT image should
always be set to "none" for ramdisk images, since the only point of
using that node is if you want U-Boot to do the decompression itself.

Yet some systems populate the node to the compression algorithm used by
the kernel instead. This used to be ignored, but now that we support
decompression of all image types it becomes a problem. Since ramdisks
should never be decompressed by U-Boot anyway, this patch adds a special
exception for them to avoid these issues. Still, setting the
'compression' node like that is wrong in the first place, so we still
want to print out a warning so that third-party distributions doing this
can notice and fix it.

Signed-off-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: Heiko Schocher <hs@denx.de>
Tested-by: Heiko Schocher <hs@denx.de>
Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
common/image-fit.c
test/py/tests/test_fit.py