]> git.dujemihanovic.xyz Git - u-boot.git/commit
boot: Support decompressing non-kernel OS images
authorSimon Glass <sjg@chromium.org>
Fri, 15 Dec 2023 23:54:16 +0000 (16:54 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 12 Jan 2024 02:19:25 +0000 (21:19 -0500)
commit99abd60d59e277f1b0853dfd6d4fdf6e8014ab30
tree317ebfda72abcc59f311d5ef645f62b414d3865c
parent4f6dd2580042dbdc28fcd4f369ff18c089adaca9
boot: Support decompressing non-kernel OS images

Sometimes the kernel is built as an EFI application rather than a
binary. We still want to support compression for this case.

For arm64 the entry point is set later in the bootm_load_os() function,
since these images are typically relocated due to the 2MB-alignment
requirement of arm64 images. But since the EFI image is not in the same
format, we need to update the entry point earlier.

Set the entry point always, for kernel_noload to resolve this problem.
It should be harmless to do this always.

Signed-off-by: Simon Glass <sjg@chromium.org>
boot/bootm.c