Re: [U-Boot] [PATCH] remoteproc: elf_loader: fix program header parsing

2020-01-25 Thread Tom Rini
On Wed, Sep 04, 2019 at 09:53:22AM +0200, Fabien Dessenne wrote: > Fix an issue where some sections are never loaded : if p_type is > different from PT_LOAD the phdr pointer must be incremented. > > Signed-off-by: Fabien Dessenne > Acked-by: Suman Anna Applied to u-boot/master, thanks! --

Re: [U-Boot] [PATCH] remoteproc: elf_loader: fix program header parsing

2019-10-11 Thread Suman Anna
On 9/4/19 2:53 AM, Fabien Dessenne wrote: > Fix an issue where some sections are never loaded : if p_type is > different from PT_LOAD the phdr pointer must be incremented. > Good catch Fabien. Fixes: 7a7c4cb0f044 ("remoteproc: add elf file load support") > Signed-off-by: Fabien Dessenne

[U-Boot] [PATCH] remoteproc: elf_loader: fix program header parsing

2019-09-04 Thread Fabien Dessenne
Fix an issue where some sections are never loaded : if p_type is different from PT_LOAD the phdr pointer must be incremented. Signed-off-by: Fabien Dessenne --- drivers/remoteproc/rproc-elf-loader.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git

Re: [U-Boot] [PATCH] remoteproc: elf_loader: fix program header parsing

2019-09-04 Thread Lokesh Vutla
On 04/09/19 1:23 PM, Fabien Dessenne wrote: > Fix an issue where some sections are never loaded : if p_type is > different from PT_LOAD the phdr pointer must be incremented. > > Signed-off-by: Fabien Dessenne Reviewed-by: Lokesh Vutla Thanks and regards, Lokesh > --- >