Re: [PATCH 2/4] bootm: Move arm64-image processing later

2023-11-06 Thread Simon Glass
Hi Tom, On Sun, 5 Nov 2023 at 14:20, Tom Rini wrote: > > On Sun, Nov 05, 2023 at 01:03:52PM -0700, Simon Glass wrote: > > > If the image is compressed, then the existing check fails, since the > > header is wrong. > > > > Move the check later in the boot process, after the kernel is > >

Re: [PATCH 2/4] bootm: Move arm64-image processing later

2023-11-05 Thread Tom Rini
On Sun, Nov 05, 2023 at 01:03:52PM -0700, Simon Glass wrote: > If the image is compressed, then the existing check fails, since the > header is wrong. > > Move the check later in the boot process, after the kernel is > decompressed. This allows use of bootm with compressed kernels, while > still

[PATCH 2/4] bootm: Move arm64-image processing later

2023-11-05 Thread Simon Glass
If the image is compressed, then the existing check fails, since the header is wrong. Move the check later in the boot process, after the kernel is decompressed. This allows use of bootm with compressed kernels, while still permitting an uncompressed kernel to be used. Signed-off-by: Simon Glass