Re: [U-Boot] [PATCH] ARM: compiler options cleanup - improve tool chain support

2009-08-20 Thread Andrzej Wolski
without USE_PRIVATE_LIBGCC=yes. Tested-by: Andrzej Wolski awol...@poczta.fm Regards -- Wygraj telefon dla swojego dziecka. 20 sztuk czeka! Sprawdz http://link.interia.pl/f22d8 ___ U

Re: [U-Boot] [PATCH] AT91: revise serial lines pullup configuration

2009-08-05 Thread Andrzej Wolski
Currently pullups are incorrectly set for all AT91 SoCs: pullup for TXD line is enabled, what is not necessary, but pullup for RXD line, what may be necessary for some boards, is disabled. This patch fixes it: it enables pullup only for RXD line. What about this patch? Andrzej Wolski

Re: [U-Boot] [PATCH] atmel_df_pow2: standalone to convert dataflashes to pow2

2009-07-20 Thread Andrzej Wolski
the completion of the program cycle to set the power of 2 page size, so it would be good to print that information at the end of programming. Regards, Andrzej Wolski -- Daj odpoczac plecom - zmien auto na rower Sprawdz http

Re: [U-Boot] [PATCH] net: sync env ethaddr to device enetaddr in eth_init()

2009-07-17 Thread Andrzej Wolski
- device sync with every network init. Reported-by: Andrzej Wolski awol...@poczta.fm Signed-off-by: Mike Frysinger vap...@gentoo.org --- Andrzej: please try this patch instead for your macb troubles Now it works fine. Thanks! Andrzej Wolski

Re: [U-Boot] [PATCH] ubi: help message correction

2009-07-17 Thread Andrzej Wolski
Fix incorrect information about size units and correct typo. Signed-off-by: Andrzej Wolski awol...@poczta.fm --- diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c index 05893f5..54faac1 100644 --- a/common/cmd_ubi.c +++ b/common/cmd_ubi.c @@ -618,7 +618,7 @@ U_BOOT_CMD(ubi, 6, 1, do_ubi

[U-Boot] [PATCH] AT91: revise serial lines pullup configuration,

2009-07-17 Thread Andrzej Wolski
Currently pullups are incorrectly set for all AT91 SoCs: pullup for TXD line is enabled, what is not necessary, but pullup for RXD line, what may be necessary for some boards, is disabled. This patch fixes it: it enables pullup only for RXD line. Signed-off-by: Andrzej Wolski awol...@poczta.fm

Re: [U-Boot] macb: get mac address from environment

2009-07-12 Thread Andrzej Wolski
This fix macb driver broken by commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5 what exactly broke ? drivers that are ported to NET_MULTI should *not* be getting the mac from the environment. and from what i can see, the macb driver is properly supporting the NET_MULTI setup. looks to me

Re: [U-Boot] [PATCH] ubi: help message correction

2009-07-12 Thread Andrzej Wolski
In message h3bhhv$l6...@ger.gmane.org you wrote: Fix incorrect information about size units. Signed-off-by: Andrzej Wolski awol...@poczta.fm --- diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c index bbca389..d1653b1 100644 --- a/common/cmd_ubi.c +++ b/common/cmd_ubi.c @@ -608,6 +608,6

[U-Boot] macb: get mac address from environment

2009-07-11 Thread Andrzej Wolski
This fix macb driver broken by commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5 Signed-off-by: Andrzej Wolski awol...@poczta.fm --- diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 6de0a04..0d2ef5e 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c @@ -408,8 +408,7 @@ static int

[U-Boot] [PATCH] ubi: help message correction

2009-07-11 Thread Andrzej Wolski
Fix incorrect information about size units. Signed-off-by: Andrzej Wolski awol...@poczta.fm --- diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c index bbca389..d1653b1 100644 --- a/common/cmd_ubi.c +++ b/common/cmd_ubi.c @@ -608,6 +608,6 @@ U_BOOT_CMD(ubi, 6, 1, do_ubi, - Remove

Re: [U-Boot] macb: get mac address from environment

2009-07-11 Thread Andrzej Wolski
On Saturday 11 July 2009 19:05:40 Andrzej Wolski wrote: This fix macb driver broken by commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5 what exactly broke ? drivers that are ported to NET_MULTI should *not* be getting the mac from the environment. and from what i can see, the macb