[U-Boot] [PATCH] include/image.h: Ease grepping of image_* functions

2009-01-29 Thread Petri Lehtinen
Because the functions have been defined using macros, grepping for their definitions is not possible. This patch adds the real function names in comments. Signed-off-by: Petri Lehtinen petri.lehti...@inoi.fi --- include/image.h | 44 ++-- 1 files changed

[U-Boot] [PATCH] include/image.h: Use explicit function definitions instead of macro trickery

2009-01-27 Thread Petri Lehtinen
Signed-off-by: Petri Lehtinen petri.lehti...@inoi.fi --- I got frustrated while grepping through the sources, trying to find the definitions of these functions. Thinking back, the obvious place to look in the first place would of course have been include/image.h, but it didn't even cross my mind

Re: [U-Boot] [PATCH] Handle environment variables like commands

2008-10-15 Thread Petri Lehtinen
to be able to run builtin U-boot commands even if they are redefined. Signed-off-by : Stefano Babic [EMAIL PROTECTED] --- It seems to me that the builtin command itself can still be redefined. Is this an issue? -- Petri Lehtinen Software Specialist Inoi Oy Tel. : +358 40 758 0229 Email: [EMAIL

Re: [U-Boot] [PATCH] libfdt: Add function to explicitly expand aliases

2008-10-03 Thread Petri Lehtinen
On Thu, Oct 02, 2008 at 07:05:53PM -0400, Jerry Van Baren wrote: [snip] diff --git a/include/libfdt.h b/include/libfdt.h index 5492a53..7cad68c 100644 --- a/include/libfdt.h +++ b/include/libfdt.h @@ -459,6 +459,32 @@ static inline void *fdt_getprop_w(void *fdt, int nodeoffset, uint32_t

Re: [U-Boot] erase and saveenv stop working after using fw_setenv

2008-09-16 Thread Petri Lehtinen
. Thanks a lot. -- Petri Lehtinen Inoi Oy Tel. : +358 40 758 0229 Email: [EMAIL PROTECTED] ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] autoscr: Fix one-character lines and non-newline terminated scripts

2008-09-10 Thread Petri Lehtinen
When not using hush, the autoscr command now executes lines that are only one character long. It also runs the last line of scripts even if it does not end in a newline. Signed-off-by: Petri Lehtinen [EMAIL PROTECTED] --- common/cmd_autoscript.c |4 +++- 1 files changed, 3 insertions(+), 1