Re: [U-Boot] Cellphones U-Boot and GPL

2010-10-07 Thread Ken MacLeod
On Thu, Oct 7, 2010 at 8:31 AM, Wolfgang Denk wrote: > In message <6b3ede875ca549879d5f776404c05...@snavari01> you wrote: >> I've recently bought an Acer cellphone powerd by Android. >> Now my question: U-Boot is released under GPLv2 license; is >> Acer obliged to give source code if requested (p

Re: [U-Boot] mkimage and XIP vs entry point

2010-01-19 Thread Ken MacLeod
Re. XIP, we recently did some boot time optimizations and found that if we loaded the uncompressed kernel-only uImage to RAM (diskboot) with the load address in the uImage the same as the load address given to diskboot and the execute addres at +64 then we shaved off 0.15 seconds by letting the ker

[U-Boot] [PATCH v2] cmd_fdt.c: fix parse of byte streams and strings

2009-09-11 Thread Ken MacLeod
d. Signed-off-by: Ken MacLeod --- The previous version of this patch 1) only fixed the first byte stream issue above and 2) concatenated the string arguments rather than creating a list (pointed out by Scott Wood). common/cmd_fdt.c | 23 +++ 1 files changed, 15 insert

Re: [U-Boot] [PATCH] cmd_fdt.c: fix parse of byte streams and strings

2009-09-11 Thread Ken MacLeod
On Fri, Sep 11, 2009 at 11:30 AM, Jerry Van Baren wrote: > Scott Wood wrote: > > On Thu, Sep 10, 2009 at 08:23:27PM -0400, Jerry Van Baren wrote: > >>fdt set /ether...@f00 interrupts "this is a string" > >> can now handle multiple strings (words) by concatenating them with > >> spaces (quoted

[U-Boot] [PATCH] cmd_fdt.c: fix parse of byte streams and strings

2009-09-10 Thread Ken MacLeod
Commit 4abd844d8e extended the fdt command parser to handle property strings which are split across multiple arguments but it was broken for byte streams and strings. This patch fixes those. Signed-off-by: Ken MacLeod --- common/cmd_fdt.c | 11 +-- 1 files changed, 9 insertions(+), 2