Re: [PATCHv2 1/6] kexec: Change the image probe's prototype

2023-06-28 Thread Pingfan Liu
I have another try, which drops the changes of the prototype of the probe method. Instead, introducing the 'probe2' interface and migrating all arm64 image probe methods to that interface. I will do more test on the new series and sent it out soon Thanks, Pingfan On Thu, Jun 1, 2023 at 9:45 

Re: [PATCHv2 1/6] kexec: Change the image probe's prototype

2023-05-31 Thread Pingfan Liu
On Thu, May 25, 2023 at 11:32 AM Pingfan Liu wrote: > > On Wed, May 24, 2023 at 7:53 PM Simon Horman wrote: > > > > On Tue, May 16, 2023 at 03:31:19PM +0800, Pingfan Liu wrote: > > > As more complicated kernel format occurs such as zboot, where the > > > compressed kernel is stored as a payload.

Re: [PATCHv2 1/6] kexec: Change the image probe's prototype

2023-05-24 Thread Pingfan Liu
On Wed, May 24, 2023 at 7:53 PM Simon Horman wrote: > > On Tue, May 16, 2023 at 03:31:19PM +0800, Pingfan Liu wrote: > > As more complicated kernel format occurs such as zboot, where the > > compressed kernel is stored as a payload. The straight forward > > decompression can not meet the demand.

Re: [PATCHv2 1/6] kexec: Change the image probe's prototype

2023-05-24 Thread Simon Horman
On Tue, May 16, 2023 at 03:31:19PM +0800, Pingfan Liu wrote: > As more complicated kernel format occurs such as zboot, where the > compressed kernel is stored as a payload. The straight forward > decompression can not meet the demand. > > A new image probe method is expected to read in the kernel

[PATCHv2 1/6] kexec: Change the image probe's prototype

2023-05-16 Thread Pingfan Liu
As more complicated kernel format occurs such as zboot, where the compressed kernel is stored as a payload. The straight forward decompression can not meet the demand. A new image probe method is expected to read in the kernel file and decide how to unfold the content by itself. This patch aims