Re: [U-Boot] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-11-11 Thread Luka Perkov
On Sat, Nov 10, 2012 at 09:04:19AM -0500, Sam Bulka wrote: > I understand the advantage of the tool when installed on a PC. But not > the advantage of adding it to Uboot, since the tool is needed when > Uboot is broken and doesn't work anymore. How would you use this tool > from within Uboot, if yo

[U-Boot] [PATCH] cmd_mmc.c: Fix typo, "dislay" -> "display"

2012-11-11 Thread Robert P. J. Day
Signed-off-by: Robert P. J. Day --- diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index 62a1c22..4c19df7 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c @@ -144,7 +144,7 @@ static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) U_BOOT_CMD( mmcinfo, 1,

Re: [U-Boot] [PATCH] cmd_mmc.c: Fix typo, "dislay" -> "display"

2012-11-11 Thread Benoît Thébaudeau
Dear Robert P. J. Day, On Sunday, November 11, 2012 2:24:44 PM, Robert P. J. Day wrote: > Signed-off-by: Robert P. J. Day > > --- > > diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c > index 62a1c22..4c19df7 100644 > --- a/common/cmd_mmc.c > +++ b/common/cmd_mmc.c > @@ -144,7 +144,7 @@ static i

Re: [U-Boot] [PATCH] cmd_mmc.c: Fix typo, "dislay" -> "display"

2012-11-11 Thread Robert P. J. Day
On Sun, 11 Nov 2012, Benoît Thébaudeau wrote: ... snip ... > Thanks for fixing my typo! ;) > > Cc-ing Andy (MMC custodian). i checked the MAINTAINERS file and didn't see an official MMC maintainer, else i would have CCed my original post. andy fleming's name doesn't appear in that file. shou

[U-Boot] any value in defining specifically a beagleboard xM config file?

2012-11-11 Thread Robert P. J. Day
i'll guess this topic has come up before but is there any value in defining a config file explicitly for the beagle xM, which differs from the beagle classic primarily in that it has no onboard flash? on my current xM, i have a perfectly fine booting u-boot which i'm thinking i got from the c

Re: [U-Boot] [PATCH] cmd_mmc.c: Fix typo, "dislay" -> "display"

2012-11-11 Thread Wolfgang Denk
Dear Robert, In message you wrote: > > i checked the MAINTAINERS file and didn't see an official MMC > maintainer, else i would have CCed my original post. andy fleming's > name doesn't appear in that file. should it? No. MAINTAINERS is the list of _board_ maintainers, as the header should

Re: [U-Boot] [PATCH] cmd_mmc.c: Fix typo, "dislay" -> "display"

2012-11-11 Thread Robert P. J. Day
On Sun, 11 Nov 2012, Wolfgang Denk wrote: > Dear Robert, > > In message you wrote: > > > > i checked the MAINTAINERS file and didn't see an official MMC > > maintainer, else i would have CCed my original post. andy fleming's > > name doesn't appear in that file. should it? > > No. MAINTAINER

Re: [U-Boot] any value in defining specifically a beagleboard xM config file?

2012-11-11 Thread Wolfgang Denk
Dear Robert, In message you wrote: > > i'll guess this topic has come up before but is there any value in > defining a config file explicitly for the beagle xM, which differs > from the beagle classic primarily in that it has no onboard flash? Short answer: no. > would there be any value i

Re: [U-Boot] any value in defining specifically a beagleboard xM config file?

2012-11-11 Thread Robert Nelson
On Sun, Nov 11, 2012 at 9:18 AM, Robert P. J. Day wrote: > > i'll guess this topic has come up before but is there any value in > defining a config file explicitly for the beagle xM, which differs > from the beagle classic primarily in that it has no onboard flash? > > on my current xM, i have

Re: [U-Boot] [PATCH 00/46] Enhance spear support

2012-11-11 Thread Albert ARIBAUD
Hi Wolfgang, On Sun, 11 Nov 2012 08:50:46 +0100, Wolfgang Denk wrote: > Dear Stefan, > > In message <509f4194.9070...@denx.de> you wrote: > > > > Vipin, please send your public ssh key to Wolfgang so that we can create > > the new "spear" U-Boot git repository for you. > > Will this be only SP

Re: [U-Boot] Documentation about Falcon Mode

2012-11-11 Thread Stefano Babic
On 10/11/2012 17:53, Marek Vasut wrote: > Dear Stefano Babic, > >> On 09/11/2012 23:41, Otavio Salvador wrote: >>> Hello, >> >> Hi Otavio, >> >>> During the last U-Boot meeting they "Falcon Mode" has been showed and >>> I'd like to have more details about it. Where I can find the >>> documentation

Re: [U-Boot] Documentation about Falcon Mode

2012-11-11 Thread Marek Vasut
Dear Stefano Babic, > On 10/11/2012 17:53, Marek Vasut wrote: > > Dear Stefano Babic, > > > >> On 09/11/2012 23:41, Otavio Salvador wrote: > >>> Hello, > >> > >> Hi Otavio, > >> > >>> During the last U-Boot meeting they "Falcon Mode" has been showed and > >>> I'd like to have more details about

[U-Boot] U-Boot 2012.10 PXA270 - saveenv / Kernel issue

2012-11-11 Thread Andreas Puls
Hello everyone, i have a problem with the latest stable U-Boot 2012.10 and a Toradex Colibri PXA270 V2.4a Board and a upating the kernel. The problem apears when i erase the hole NOR Flash, copy the uboot and the uImage. Here are my steps. 1. unprotect and erase the hole flash. 2. copy the l

Re: [U-Boot] U-Boot 2012.10 PXA270 - saveenv / Kernel issue

2012-11-11 Thread Vasily Khoruzhick
On Sun, Nov 11, 2012 at 10:10 PM, Andreas Puls wrote: > Hello everyone, > > > i have a problem with the latest stable U-Boot 2012.10 and a Toradex > Colibri PXA270 V2.4a Board and a upating the kernel. > > The problem apears when i erase the hole NOR Flash, copy the uboot and > the uImage. > > Her

[U-Boot] [PATCH] cmd_led.c: Standardize format of help and usage info.

2012-11-11 Thread Robert P. J. Day
Current "led" help and usage info has redundancy and extraneous newlines, tweak it to be consistent with other commands. Signed-off-by: Robert P. J. Day --- checked custodians page, didn't notice anyone in charge of LEDs. diff --git a/common/cmd_led.c b/common/cmd_led.c index d83b3ba..7f5ab

Re: [U-Boot] [PATCH V2 1/2] mmc: add bcm2835 driver

2012-11-11 Thread Stephen Warren
On 11/10/2012 02:17 AM, Albert ARIBAUD wrote: > Hi Stephen, > >> arch/arm/include/asm/arch-bcm2835/sdhci.h | 24 >> drivers/mmc/Makefile |1 + >> drivers/mmc/bcm2835_sdhci.c | 177 >> + >> 3 files changed, 202 insertions(

Re: [U-Boot] U-Boot 2012.10 PXA270 - saveenv / Kernel issue

2012-11-11 Thread Rommel G Custodio
Dear All On 2012.11/11, Vasily Khoruzhick wrote: > On Sun, Nov 11, 2012 at 10:10 PM, Andreas Puls wrote: > > Hello everyone, > > > > > > i have a problem with the latest stable U-Boot 2012.10 and a Toradex > > Colibri PXA270 V2.4a Board and a upating the kernel. > > > > The problem apears when i

Re: [U-Boot] UBIFS fails on SheevaPlug

2012-11-11 Thread Dimax
HI, I have managed to build latest image and apply MALLOC patch. After that system is fully working: UBIFS: recovery needed UBIFS: recovery deferred UBIFS: mounted UBI device 0, volume 0, name "rootfs" UBIFS: mounted read-only UBIFS: file system size: 515708928 bytes (503622 KiB, 491 MiB, 3997 L

Re: [U-Boot] [PATCH] sh: add support for sh7752evb board

2012-11-11 Thread Nobuhiro Iwamatsu
Applied, thanks. Best regards, Nobuhiro On Mon, Nov 5, 2012 at 10:53 AM, Shimoda, Yoshihiro wrote: > The R0P7752C0RZ board has SH7752, 512MB DDR3-SDRAM, SPI ROM, > Gigabit Ethernet, and eMMC. > > This patch supports the following functions: > - 512MB DDR3-SDRAM, SCIF4, SPI ROM, Gigabit Et

Re: [U-Boot] [PATCH] sh: fix trigger_address_error()

2012-11-11 Thread Nobuhiro Iwamatsu
Applied, thanks. Best regards, Nobuhiro On Mon, Nov 5, 2012 at 10:53 AM, Shimoda, Yoshihiro wrote: > The function should set BL bit, but it should not clear other flags. > So, the patch uses set_bl_bit() instead of a local asm code. > > Signed-off-by: Yoshihiro Shimoda > --- > arch/sh/includ

Re: [U-Boot] [PATCH] serial_sh: Add support Renesas SH7752

2012-11-11 Thread Nobuhiro Iwamatsu
Applied, thanks. Best regards, Nobuhiro On Mon, Nov 5, 2012 at 10:54 AM, Shimoda, Yoshihiro wrote: > Signed-off-by: Yoshihiro Shimoda > --- > drivers/serial/serial_sh.h |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/serial/serial_sh.h b/drivers/serial/

Re: [U-Boot] [PATCH] net: sh_eth: add support for SH7752

2012-11-11 Thread Nobuhiro Iwamatsu
On Mon, Nov 5, 2012 at 10:54 AM, Shimoda, Yoshihiro wrote: > SH7752 has two fast ethernet controllers and two gigabit ethernet > controllers. It is similar to SH7757. > > Signed-off-by: Yoshihiro Shimoda Acked-by: Nobuhiro Iwamatsu > --- > drivers/net/sh_eth.c |4 ++-- > drivers/net/sh_et