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 w...@denx.de 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

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 gerald.vanba...@ge.comwrote: 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

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

2009-09-11 Thread Ken MacLeod
-off-by: Ken MacLeod k...@bitsko.slc.ut.us --- 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

[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 k...@bitsko.slc.ut.us --- common/cmd_fdt.c | 11 +-- 1 files