Re: [U-Boot-Users] [PATCH] allow ports to override bootelf behavior

2008-04-18 Thread Stefan Roese
On Friday 18 April 2008, Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > > Change the bootelf setup function into a dedicated weak function called > > do_bootelf_exec. This way ports can control the behavior however they > > like before/after calling the ELF entry point. > > ---

Re: [U-Boot-Users] [PATCH] allow ports to override bootelf behavior

2008-04-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Change the bootelf setup function into a dedicated weak function called > do_bootelf_exec. This way ports can control the behavior however they > like before/after calling the ELF entry point. > --- > common/cmd_elf.c | 33 +---

[U-Boot-Users] [PATCH] allow ports to override bootelf behavior

2008-04-13 Thread Mike Frysinger
Change the bootelf setup function into a dedicated weak function called do_bootelf_exec. This way ports can control the behavior however they like before/after calling the ELF entry point. --- common/cmd_elf.c | 33 + 1 files changed, 21 insertions(+), 12 deletio

Re: [U-Boot-Users] [patch] allow ports to override bootelf behavior

2008-04-13 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > This splits the dcache logic out of do_bootelf into a dedicated weak function > called do_bootelf_exec. This way ports can control the behavior before > executing an ELF image however they like. > > Signed-off-by: Mike Frysinger <[EMAIL PROTECTED]> > --

[U-Boot-Users] [patch] allow ports to override bootelf behavior

2008-02-01 Thread Mike Frysinger
This splits the dcache logic out of do_bootelf into a dedicated weak function called do_bootelf_exec. This way ports can control the behavior before executing an ELF image however they like. Signed-off-by: Mike Frysinger <[EMAIL PROTECTED]> --- diff --git a/common/cmd_elf.c b/common/cmd_elf.c ind