Re: [U-Boot] U-Boot Digest, Vol 31, Issue 27

2010-12-25 Thread Albert ARIBAUD
Le 25/12/2010 07:43, nagaraj karra a écrit : > hi > > please help me while compilring the kernel i ma getting the below message. Hi, This is the U-boot bootloader list. Please post kernel related questions on a Linux kernel list. Amicalement, -- Albert.

Re: [U-Boot] LAN91C96

2010-12-25 Thread Albert ARIBAUD
Le 25/12/2010 08:55, Yanjun Yang a écrit : > Hello all, > > I just recently made a LAN91C96 chip work for my hardware. Some changes > to the source code might be useful to whom interested. Any comments and > suggestions are welcome. Hi, In the changes you indicate, you don't specify which file is

[U-Boot] [PATCH] UBIFS: Fix dereferencing type-punned pointer compiler warning

2010-12-25 Thread Dirk Behme
Fix compiler warning In file included from ubifs.h:2137:0, from ubifs.c:26: misc.h: In function 'ubifs_idx_key': misc.h:263:26: warning: dereferencing type-punned pointer will break strict-aliasing rules seen with gcc version 4.5.1 (Sourcery G++ Lite 2010.09-50). No functional

[U-Boot] AMAZING New Wordpress Plug-in

2010-12-25 Thread Cory Aitken
Imagine this... You're getting traffic to your Wordpress Site (or blog), but your site isn't converting for squat :-( People come to your site, but they don't click on any of your offers and no-one EVER seems to buy anything. But then... You take 4 minutes to put a magical new Wordpress pl

[U-Boot] [PATCH 2/2 for 2010.12 ] sh: Add ENDIANNESS to config.mk of sh2

2010-12-25 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu --- arch/sh/cpu/sh2/config.mk |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/sh/cpu/sh2/config.mk b/arch/sh/cpu/sh2/config.mk index 52d5a0f..02ef981 100644 --- a/arch/sh/cpu/sh2/config.mk +++ b/arch/sh/cpu/sh2/config.mk @@ -21,6 +2

Re: [U-Boot] [PATCH 1/2 for 2010.12 ] Add support PLATFORM_LDFLAGS to cmd_link_o_target

2010-12-25 Thread Nobuhiro Iwamatsu
Oh, sorry. I mistake subject... This is not for 2010.12.. Nobuhiro 2010/12/26 Nobuhiro Iwamatsu : > Current cmd_link_o_target function in config.mk does not support the set > of the endian. > > Some architecture is bi-endian (e.g. mips and sh). > Therefore, there is case supporting big endian and

[U-Boot] [PATCH 1/2 for 2010.12 ] Add support PLATFORM_LDFLAGS to cmd_link_o_target

2010-12-25 Thread Nobuhiro Iwamatsu
Current cmd_link_o_target function in config.mk does not support the set of the endian. Some architecture is bi-endian (e.g. mips and sh). Therefore, there is case supporting big endian and little endian with one toolchain. For example, when user builds target of big endian in host of little endia

[U-Boot] [PATCH] Change the chip name to fit the eth_device struct

2010-12-25 Thread Yanjun Yang
The eth_device.name field length is limited by NAMESIZE, which is 16 defined in include/net.h. Unfortunately, two of the names in lan91c96.c are beyond that. Signed-off-by: YanJun Yang --- drivers/net/lan91c96.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/

[U-Boot] [PATCH] Correct chip detect logic

2010-12-25 Thread Yanjun Yang
The lan91c96_detect_chip routine is not correct according to the manual. Signed-off-by: YanJun Yang --- drivers/net/lan91c96.c |2 +- drivers/net/lan91c96.h |3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/net/lan91c96.c b/drivers/net/lan91c96.c index bd6966

[U-Boot] [RFC] Make sure the chip reset and init right

2010-12-25 Thread Yanjun Yang
It seems that the chip can only be reset into a known state by using attribute space. The smc_reset and smc_enable function also need more lines to make the chip work. Signed-off-by: YanJun Yang --- drivers/net/lan91c96.c | 26 ++ 1 files changed, 22 insertions(+), 4 de