Re: [U-Boot] [PATCH 03/16] efi_loader: Add PE image loader

2016-02-25 Thread Alexander Graf
On 02.02.16 18:49, Mark Rutland wrote: > On Tue, Feb 02, 2016 at 03:45:01AM +0100, Alexander Graf wrote: >> EFI uses the PE binary format for its application images. Add support to EFI >> PE >> binaries as well as all necessary bits for the "EFI image loader" interfaces. >> >> Signed-off-by: Ale

Re: [U-Boot] [PATCH 03/16] efi_loader: Add PE image loader

2016-02-02 Thread Simon Glass
On 1 February 2016 at 19:45, Alexander Graf wrote: > EFI uses the PE binary format for its application images. Add support to EFI > PE > binaries as well as all necessary bits for the "EFI image loader" interfaces. > > Signed-off-by: Alexander Graf > > --- > > v1 -> v2: > > - move memory alloc

Re: [U-Boot] [PATCH 03/16] efi_loader: Add PE image loader

2016-02-02 Thread Mark Rutland
On Tue, Feb 02, 2016 at 03:45:01AM +0100, Alexander Graf wrote: > EFI uses the PE binary format for its application images. Add support to EFI > PE > binaries as well as all necessary bits for the "EFI image loader" interfaces. > > Signed-off-by: Alexander Graf > > --- > > v1 -> v2: > > - m

Re: [U-Boot] [PATCH 03/16] efi_loader: Add PE image loader

2016-02-02 Thread Leif Lindholm
On Tue, Feb 02, 2016 at 03:45:01AM +0100, Alexander Graf wrote: > EFI uses the PE binary format for its application images. Add support to EFI > PE > binaries as well as all necessary bits for the "EFI image loader" interfaces. > > Signed-off-by: Alexander Graf > > --- > > v1 -> v2: > > - m

[U-Boot] [PATCH 03/16] efi_loader: Add PE image loader

2016-02-01 Thread Alexander Graf
EFI uses the PE binary format for its application images. Add support to EFI PE binaries as well as all necessary bits for the "EFI image loader" interfaces. Signed-off-by: Alexander Graf --- v1 -> v2: - move memory allocation to separate patch - limit 32/64 to hosts that support it - ch