Re: [PATCH 1/1] bootmeth: pass size to efi_binary_run()

2023-12-22 Thread Tom Rini
On Fri, Dec 22, 2023 at 05:46:11PM +0200, Ilias Apalodimas wrote: > On Fri, 22 Dec 2023 at 17:43, Peter Robinson wrote: > > > > On Fri, Dec 22, 2023 at 3:37 PM Tom Rini wrote: > > > > > > On Fri, 22 Dec 2023 16:01:56 +0100, Heinrich Schuchardt wrote: > > > > > > > If we call efi_binary_run() with

Re: [PATCH 1/1] bootmeth: pass size to efi_binary_run()

2023-12-22 Thread Ilias Apalodimas
On Fri, 22 Dec 2023 at 17:43, Peter Robinson wrote: > > On Fri, Dec 22, 2023 at 3:37 PM Tom Rini wrote: > > > > On Fri, 22 Dec 2023 16:01:56 +0100, Heinrich Schuchardt wrote: > > > > > If we call efi_binary_run() with size parameter set to zero, we get an > > > error > > > > > > Not a PE-CO

Re: [PATCH 1/1] bootmeth: pass size to efi_binary_run()

2023-12-22 Thread Peter Robinson
On Fri, Dec 22, 2023 at 3:37 PM Tom Rini wrote: > > On Fri, 22 Dec 2023 16:01:56 +0100, Heinrich Schuchardt wrote: > > > If we call efi_binary_run() with size parameter set to zero, we get an error > > > > Not a PE-COFF file > > > > Fill the missing value. > > > > > > [...] > > Applied to u-b

Re: [PATCH 1/1] bootmeth: pass size to efi_binary_run()

2023-12-22 Thread Tom Rini
On Fri, 22 Dec 2023 16:01:56 +0100, Heinrich Schuchardt wrote: > If we call efi_binary_run() with size parameter set to zero, we get an error > > Not a PE-COFF file > > Fill the missing value. > > > [...] Applied to u-boot/next, thanks! -- Tom

Re: [PATCH 1/1] bootmeth: pass size to efi_binary_run()

2023-12-22 Thread Ilias Apalodimas
On Fri, 22 Dec 2023 at 17:02, Heinrich Schuchardt wrote: > > If we call efi_binary_run() with size parameter set to zero, we get an error > > Not a PE-COFF file > > Fill the missing value. > > Fixes: 1373ffde52e1 ("Merge tag 'v2024.01-rc5' into next") > Fixes: 7017fc54a5bc ("bootmeth: use efi

[PATCH 1/1] bootmeth: pass size to efi_binary_run()

2023-12-22 Thread Heinrich Schuchardt
If we call efi_binary_run() with size parameter set to zero, we get an error Not a PE-COFF file Fill the missing value. Fixes: 1373ffde52e1 ("Merge tag 'v2024.01-rc5' into next") Fixes: 7017fc54a5bc ("bootmeth: use efi_loader interfaces instead of bootefi command") Signed-off-by: Heinrich