Hi All,
I am getting a warning message when i run fw_printenv on board.
Warning : Bad CRC!! Using Default Environment. And it showed Few
environment variables.
The values of those environment variables are not that is set on my board.
What might me the issue?
Thanks
Rahanesh
_
> -Original Message-
> From: Wood Scott-B07421
> Sent: Saturday, September 19, 2009 12:37 AM
> To: Hu Mingkai-B21284
> Cc: u-boot@lists.denx.de; ga...@kernel.crashing.org
> Subject: Re: [PATCH v3 1/3] NAND boot: MPC8536DS support
>
> On Fri, Sep 18, 2009 at 11:35:33AM +0800, Mingkai Hu
> -Original Message-
> From: Kumar Gala [mailto:ga...@kernel.crashing.org]
> Sent: Saturday, September 19, 2009 2:42 AM
> To: Hu Mingkai-B21284
> Cc: u-boot@lists.denx.de; Wood Scott-B07421
> Subject: Re: [PATCH v3 1/3] NAND boot: MPC8536DS support
>
> > +
> > +#include
> > +#include
> -Original Message-
> From: Liu Dave-R63238
> Sent: Saturday, September 19, 2009 8:01 AM
> To: Kumar Gala; Hu Mingkai-B21284
> Cc: Wood Scott-B07421; u-boot@lists.denx.de
> Subject: RE: [U-Boot] [PATCH v3 1/3] NAND boot: MPC8536DS support
>
> > > diff --git a/cpu/mpc85xx/cpu_init_nand
In u-boot-2009.08/cpu/arm920t/start.S, the instruction of line 158 is "ldr
r1, =0x3ff", but the effective bits in INTSUBMSK register of S3C2410 are
[10...0]. So I think "0x3ff" is not right. The right value should be "0x7ff".
__
> -Original Message-
> From: Kumar Gala [mailto:ga...@kernel.crashing.org]
> Sent: Saturday, September 19, 2009 2:41 AM
> To: Hu Mingkai-B21284
> Cc: u-boot@lists.denx.de; Wood Scott-B07421
> Subject: Re: [PATCH v3 1/3] NAND boot: MPC8536DS support
>
>
> On Sep 17, 2009, at 10:35 PM,
On Mon, Sep 21, 2009 at 10:36 AM, Paul Gortmaker
wrote:
> Sweep throught the board specific file and replace the various
> register proddings with the equivalent I/O accessors.
>
> Signed-off-by: Paul Gortmaker
> ---
>
> - ecm->eedr = 0x; /* clear ecm errors */
> - ec
> -Original Message-
> From: Kumar Gala [mailto:ga...@kernel.crashing.org]
> Sent: Friday, September 18, 2009 9:55 PM
> To: Hu Mingkai-B21284
> Cc: u-boot@lists.denx.de; Wood Scott-B07421
> Subject: Re: [PATCH v3 1/3] NAND boot: MPC8536DS support
>
> Looks good.
>
> Any plans on addin
Hello, ALL:
I want use u-boot for lm3s811evb which emulated by QEMU system. But I
cannot file the related name from include/configs/ directory. I want to know
how I can configure the u-boot.
# make _config
Hope someone fill the name or give me idea how to compile u-boot to
support
This is the remaining bits that weren't merged to 85xx, with the
the requested fixes of course. Those being:
sbc8548: correct local bus SDRAM size from 64M to 128M
-now uses I/O accesors on BR4/OR4
sbc8548: update PCI/PCI-e support code
-redone to make use of the code de-duplific
With only eTSEC1 and 2 being brought out to RJ-45 connectors, we
aren't interested in the eTSEC3/4 voltage hack on this board
Signed-off-by: Paul Gortmaker
---
board/sbc8548/sbc8548.c |6 --
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/board/sbc8548/sbc8548.c b/board/sb
The size of the LB SDRAM on this board is 128MB, spanning CS3
and CS4. It was previously only being configured for 64MB on
CS3, since that was what the original codebase of the MPC8548CDS
had. In addition to setting up BR4/OR4, this also adds the TLB
entry for the second half of the SDRAM.
Signe
Sweep throught the board specific file and replace the various
register proddings with the equivalent I/O accessors.
Signed-off-by: Paul Gortmaker
---
board/sbc8548/sbc8548.c | 91 +++
1 files changed, 45 insertions(+), 46 deletions(-)
diff --git a/
Prior to this commit, to enable PCI, you had to go manually
edit the board config header, and if you had 33MHz PCI, you
had to manually change CONFIG_SYS_NS16550_CLK too, which was
not real user friendly,
This adds the typical PCI and clock speed make targets to the
toplevel Makefile in accordance
The PCI/PCI-e support for the sbc8548 was based on an earlier
version of what the MPC8548CDS board was using, and in its
current state it won't even compile. This re-syncs it to match
the latest codebase and makes use of the new shared PCI functions
to reduce board duplication.
It borrows from th
Recycle the recently added PCI-e wrapper used to reduce board
duplication of code by creating a similar version for plain PCI.
Signed-off-by: Paul Gortmaker
---
include/asm-ppc/fsl_pci.h | 12
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/include/asm-ppc/fsl_pci.
> > +# Print statistics when ctrl-c is pressed
> > +trap "print_stats; exit " 2
>
> Why only on signal 2? Usually we use "1 2 3 15" in such cases.
2's the only case I've ever used for MAKEALL, I'll add the other cases
as you suggest.
> Also, you might add "0" here and then...
>
> > @@ -932,3 +9
On Mon, 2009-09-21 at 00:09 +0200, Wolfgang Denk wrote:
> Dear Peter Tyser,
>
> In message <1253317683-2831-1-git-send-email-pty...@xes-inc.com> you wrote:
> >
> > if [ "$BUILD_NCPUS" -gt 1 ]
> > then
> > - JOBS=-j`expr "$BUILD_NCPUS" + 1`
> > + JOBS="-j $(($BUILD_NCPUS + 1))"
> > else
> >
Dear Peter Tyser,
In message <1253317683-2831-1-git-send-email-pty...@xes-inc.com> you wrote:
>
> if [ "$BUILD_NCPUS" -gt 1 ]
> then
> - JOBS=-j`expr "$BUILD_NCPUS" + 1`
> + JOBS="-j $(($BUILD_NCPUS + 1))"
> else
> JOBS=""
> fi
This is an unrelated change. I would not include it
Dear Peter Tyser,
In message <1253316982-20606-1-git-send-email-pty...@xes-inc.com> you wrote:
>
> index 1d50c34..a63d028 100755
> --- a/MAKEALL
> +++ b/MAKEALL
> @@ -1,5 +1,8 @@
> #!/bin/sh
>
> +# Print statistics when ctrl-c is pressed
> +trap "print_stats; exit " 2
Why only on signal 2? Usu
Dear Peter Tyser,
In message <1253313414-6907-1-git-send-email-pty...@xes-inc.com> you wrote:
> This change adds some basic summary information to the MAKEALL script.
> The summary information includes how many boards were compiled, how many
> boards had compile warnings or errors, and which speci
On Sat, Sep 19, 2009 at 1:08 PM, Kumar Gala wrote:
> Use new fsl_pci_init_port() that reduces amount of duplicated code in the
> board ports, use IO accessors and clean up printing of status info.
>
> Signed-off-by: Kumar Gala
> ---
> * Fixed set_bits32 -> setbits_be32
You got the bottom one, bu
Hi Liu,
I have posted the patch for the same.
Have a look at the attachment.
Thanks
Dipen
-Original Message-
From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de]
On Behalf Of Liu Dave-R63238
Sent: Saturday, September 19, 2009 5:31 AM
To: Kumar Gala; Hu Mingkai-B21
23 matches
Mail list logo