Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Remy Bohmer
Hello Guennadi, > http://lists.denx.de/pipermail/u-boot/attachments/20080722/92a646d6/attachment.txt > > which does indeed fix it for all boards setting > CONFIG_SKIP_RELOCATE_UBOOT, i.e., booting directly from RAM... Please, > correct me if I am wrong! You are _not_ wrong. It was my goal to fix

[U-Boot] [PATCH][for 1.3.5] Fix handling of mem reserves for ramdisk

2008-09-05 Thread Heiko Schocher
Hello Kumar, > When we call fdt_chosen in bootm we get a dummy mem reserve added for > the ramdisk location before its relocated. We need to delete that > mem reserve before we call fdt_initrd() for the final fixup. > > Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> > --- > lib_ppc/bootm.c | 16

Re: [U-Boot] [U-Boot-Users] [PATCH] [resubmit] AX88180: new gigabit network driver

2008-09-05 Thread Ben Warren
Hi Wolfgang, Wolfgang Denk wrote: > Dear Ben, > > In message <[EMAIL PROTECTED]> Louis Su wrote: > >> Signed-off-by: Louis Su <[EMAIL PROTECTED]> >> --- >> drivers/net/Makefile |1 + >> drivers/net/ax88180.c | 727 >> + >> drivers/net/ax88

Re: [U-Boot] running u-boot from SDRAM

2008-09-05 Thread Roman Mashak
Hello Wolfgang, 2008/9/4 Wolfgang Denk <[EMAIL PROTECTED]>: > I guess you are aware that SRDAM cannot just be used, instead it must > initialized correctly before you can access it. Your master is also > performing this initialization procedure, then? Yes, it is. >> Therefore I'm wondering --

Re: [U-Boot] ARTOS support?

2008-09-05 Thread Wolfgang Denk
Dear Kumar, In message <[EMAIL PROTECTED]> Pantelis Antoniou wrote: > > > Does anyone use ARTOS? or have any pointers to it? I can't find > > anything that is clearly related to ArtOS in a google search. > > Should we be maintaining support for this? > > AFAIK, it is still used but the pro

Re: [U-Boot] [U-Boot-Users] [PATCH] (Resend)Allows negative offset in command loads

2008-09-05 Thread Wolfgang Denk
Dear Ricardo Ribalda Delgado, In message <[EMAIL PROTECTED]> you wrote: > > Signed-off-by: Ricardo Ribalda Delgado <[EMAIL PROTECTED]> > --- > Previus commit had compiling warnings > > common/cmd_load.c | 10 +- > 1 files changed, 5 insertions(+), 5 deletions(-) Applied, thanks. Bes

Re: [U-Boot] [U-Boot-Users] [PATCH] Optimize ext2fs read functions

2008-09-05 Thread Wolfgang Denk
Dear Ryan, In message <[EMAIL PROTECTED]> you wrote: > > I'm sorry that I can't send patch mail by git-send-mail because I'm in ST > internal network. > I just post the whole output by git-format-patch tool. That's OK. > If it's buggy, please let me know. Not really buggy, but: > > >From

Re: [U-Boot] usb/25

2008-09-05 Thread u-boot
Synopsis: [PATCH] USB EHCI: reset root hub State-Changed-From-To: open->closed State-Changed-By: wd State-Changed-When: Sat, 06 Sep 2008 01:26:27 +0200 State-Changed-Why: Applied (slightly modified) as commit e90fb6afab2c0c074dfb67bacb4de179eb188a24

Re: [U-Boot] [PATCH v2] USB EHCI: reset root hub

2008-09-05 Thread Wolfgang Denk
Dear Detlev Zundel, In message <[EMAIL PROTECTED]> you wrote: > From: Yuri Tikhonov <[EMAIL PROTECTED]> > > Some of multi-function USB controllers (e.g. ISP1562) allow root hub > resetting only via EHCI registers. So, this patch adds the corresponding > kind of reset to OHCI's hc_reset() if the n

Re: [U-Boot] common/23

2008-09-05 Thread u-boot
Synopsis: [PATCH] RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get(). State-Changed-From-To: open->closed State-Changed-By: wd State-Changed-When: Sat, 06 Sep 2008 01:23:16 +0200 State-Changed-Why: Applied as commit 5875d358f025c1b042d8a0f08384b756de7256c9 _

Re: [U-Boot] [PATCH] Add support for booting of INTEGRITY operating system uImages

2008-09-05 Thread Wolfgang Denk
Dear Peter Tyser, In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> > --- > README |5 +++-- > common/cmd_bootm.c | 39 +++ > common/image.c |3 +++ > include/image.h|1 + > 4 files chan

Re: [U-Boot] [PATCH][RFC] OneNAND: erase/read/write jffs2 commands

2008-09-05 Thread Wolfgang Denk
Dear Fathi BOUDRA, In message <[EMAIL PROTECTED]> you wrote: > Implement OneNAND related JFFS2 commands (based on NAND source code): > - onenand erase clean > - onenand read.jffs2 > - onenand write.jffs2 ... > @@ -153,9 +204,9 @@ > onenand,6, 1, do_onenand, > "onen

Re: [U-Boot] [U-Boot-Users] [PATCH] JFFS2 command support on OneNAND (take #3)

2008-09-05 Thread Wolfgang Denk
Dear Fathi BOUDRA, In message <[EMAIL PROTECTED]> you wrote: > JFFS2 command support on OneNAND. > > - Fix typo. > - Fix nand_bbt_descr redefinition when NAND and OneNAND are enabled. > > Since last comments: > - Add some CONFIG_CMD_ONENAND to prevent adding new code. > - Fix line too long. > -

Re: [U-Boot] [U-Boot-Users] [PATCH] [resubmit] AX88180: new gigabit network driver

2008-09-05 Thread Wolfgang Denk
Dear Ben, In message <[EMAIL PROTECTED]> Louis Su wrote: > > Signed-off-by: Louis Su <[EMAIL PROTECTED]> > --- > drivers/net/Makefile |1 + > drivers/net/ax88180.c | 727 > + > drivers/net/ax88180.h | 412 > 3 f

[U-Boot] [POWERPC] [BUG?] ppc4xx: PCIX0_STS versus PCIX0_STATUS in 4xx_pci.c

2008-09-05 Thread carolyn . j . smith
Hello everyone, In the pci_440_init function in cpu/ppc4xx/4xx_pci.c, shouldn't this out32r( PCIX0_STS, in32r( PCIX0_STS ) & ~0xfff8 ); really be this? out32r( PCIX0_STATUS, in32r( PCIX0_STATUS ) & ~0xfff8 ); Thanks, Carolyn ___ U-Boot mailin

[U-Boot] [PATCH] add CUSTODIANS file

2008-09-05 Thread Jean-Christophe PLAGNIOL-VILLARD
It will contain informations about each custodian area This a dump of the http://www.denx.de/wiki/U-Boot/Custodians webpage Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- CUSTODIANS | 175 1 files changed, 175

Re: [U-Boot] No Partition in Flash Memoery under MTD

2008-09-05 Thread richardretanubun
Hello, FlyingWoWings wrote: > Greetings, > i am using ELDK 2.6.26 distribution on MPC8349emds, > arch = powerpc, cross_compile = ppc_6xx- > > i've tried with uImage + FDT blob .dtb + uRamdisk > and i've added flash mapping in .dts as follow: > > [EMAIL PROTECTED] { > compatible = "

Re: [U-Boot] [PATCH] Fix compiler warning in mpc8xxx ddr code

2008-09-05 Thread Jean-Christophe PLAGNIOL-VILLARD
On 14:40 Fri 05 Sep , Kumar Gala wrote: > ctrl_regs.c: In function 'compute_fsl_memctl_config_regs': > ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function > ctrl_regs.c:523: note: 'caslat' was declared here > > Add a warning in DDR1 case if cas_latency isn't a value w

[U-Boot] [PATCH] bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label

2008-09-05 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- lib_arm/bootm.c|2 +- lib_avr32/bootm.c |2 +- lib_blackfin/bootm.c |2 +- lib_microblaze/bootm.c |2 +- lib_nios2/bootm.c |1 - lib_sh/bootm.c |1 - 6 files changed, 4 inser

[U-Boot] [PATCH] Fix compiler warning in mpc8xxx ddr code

2008-09-05 Thread Kumar Gala
ctrl_regs.c: In function 'compute_fsl_memctl_config_regs': ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function ctrl_regs.c:523: note: 'caslat' was declared here Add a warning in DDR1 case if cas_latency isn't a value we know about. Signed-off-by: Kumar Gala <[EMAIL PROTE

Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Joakim Tjernlund
> -Original Message- > From: Magnus Lilja [mailto:[EMAIL PROTECTED] > Sent: den 5 september 2008 21:16 > To: Joakim Tjernlund > Cc: Guennadi Liakhovetski; U-Boot@lists.denx.de > Subject: Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char > from a..." breaks > imx31_phycore

Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Joakim Tjernlund
> -Original Message- > From: Guennadi Liakhovetski [mailto:[EMAIL PROTECTED] > Sent: den 5 september 2008 21:26 > To: Joakim Tjernlund > Cc: U-Boot@lists.denx.de; Jean-Christophe PLAGNIOL-VILLARD; Remy Bohmer > Subject: RE: [REGRESSION] commit b502611b51... "Change env_get_char from > a.

Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Guennadi Liakhovetski
On Fri, 5 Sep 2008, Joakim Tjernlund wrote: > > > -Original Message- > > From: Guennadi Liakhovetski [mailto:[EMAIL PROTECTED] > > Sent: den 5 september 2008 20:01 > > To: U-Boot@lists.denx.de > > Cc: Joakim Tjernlund > > Subject: [REGRESSION] commit b502611b51... "Change env_get_char fro

Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Magnus Lilja
Hi, 2008/9/5 Joakim Tjernlund <[EMAIL PROTECTED]>: > >> -Original Message- >> From: Guennadi Liakhovetski [mailto:[EMAIL PROTECTED] >> Sent: den 5 september 2008 20:01 >> To: U-Boot@lists.denx.de >> Cc: Joakim Tjernlund >> Subject: [REGRESSION] commit b502611b51... "Change env_get_char fro

Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Wolfgang Denk
Dear Guennadi, In message <[EMAIL PROTECTED]> you wrote: > > Change env_get_char from a global function ptr to a function ... > found by bisection and causes at least the imx31_phycore board to break. > The boot process becomes slow, printenv is very slow too, booting does not > always come

Re: [U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Joakim Tjernlund
> -Original Message- > From: Guennadi Liakhovetski [mailto:[EMAIL PROTECTED] > Sent: den 5 september 2008 20:01 > To: U-Boot@lists.denx.de > Cc: Joakim Tjernlund > Subject: [REGRESSION] commit b502611b51... "Change env_get_char from a..." > breaks imx31_phycore > > Hi, > > The aforement

Re: [U-Boot] [POWERPC][BUG] ramdisk: u-boot no longer boots a ramdisk with Linux 2.6.27-rc4

2008-09-05 Thread Kumar Gala
On Sep 5, 2008, at 11:36 AM, Heiko Schocher wrote: > Hello Kumar, > > Kumar Gala wrote: >>> I think we can drop this useless dummy call from fdt_chosen. >>> Has somebody any suggestions? >> >> That breaks some of the commands. I see the problem and will post >> a fix >> for you to try. > > Whi

[U-Boot] [REGRESSION] commit b502611b51... "Change env_get_char from a..." breaks imx31_phycore

2008-09-05 Thread Guennadi Liakhovetski
Hi, The aforementioned commit commit b502611b51f02718c2d1117d4981dabceb5af6de Author: Joakim Tjernlund <[EMAIL PROTECTED]> Date: Sun Jul 6 12:30:09 2008 +0200 Change env_get_char from a global function ptr to a function This avoids an early global data reference. Signed-off-by: J

Re: [U-Boot] Image.c get_table_entry_name

2008-09-05 Thread Peter Tyser
Hi Ed, > The string pointers in uimage_{arch,os,type,comp}[] are not being > relocated and still point to flash. > If flash is erased (all f's), this causes bootm to trap on a bad > pointer. > > This is for powerpc (mpc8572ds). How are they suppose to be relocated? > > -EdS > > => boot > boot

Re: [U-Boot] [POWERPC][BUG] ramdisk: u-boot no longer boots a ramdisk with Linux 2.6.27-rc4

2008-09-05 Thread Heiko Schocher
Hello Kumar, Kumar Gala wrote: >> I think we can drop this useless dummy call from fdt_chosen. >> Has somebody any suggestions? > > That breaks some of the commands. I see the problem and will post a fix > for you to try. Which commands? bye Heiko -- DENX Software Engineering GmbH, MD: Wo

Re: [U-Boot] [PATCH][for 1.3.5] 85xx: Ensure timebase is zero on secondary cores

2008-09-05 Thread Kumar Gala
On Sep 5, 2008, at 11:10 AM, Scott Wood wrote: > On Fri, Sep 05, 2008 at 08:45:11AM -0500, Kumar Gala wrote: >> diff --git a/cpu/mpc85xx/release.S b/cpu/mpc85xx/release.S >> index 75676b5..2ae6057 100644 >> --- a/cpu/mpc85xx/release.S >> +++ b/cpu/mpc85xx/release.S >> @@ -37,6 +37,11 @@ __seconda

[U-Boot] Image.c get_table_entry_name

2008-09-05 Thread Swarthout Edward L-SWARTHOU
The string pointers in uimage_{arch,os,type,comp}[] are not being relocated and still point to flash. If flash is erased (all f's), this causes bootm to trap on a bad pointer. This is for powerpc (mpc8572ds). How are they suppose to be relocated? -EdS => boot boot ## Booting kernel from Legacy

Re: [U-Boot] [PATCH][for 1.3.5] 85xx: Ensure timebase is zero on secondary cores

2008-09-05 Thread Scott Wood
On Fri, Sep 05, 2008 at 08:45:11AM -0500, Kumar Gala wrote: > diff --git a/cpu/mpc85xx/release.S b/cpu/mpc85xx/release.S > index 75676b5..2ae6057 100644 > --- a/cpu/mpc85xx/release.S > +++ b/cpu/mpc85xx/release.S > @@ -37,6 +37,11 @@ __secondary_start_page: > li r3,0x201 > mtspr

[U-Boot] [PATCH][for 1.3.5] Fix handling of mem reserves for ramdisk

2008-09-05 Thread Kumar Gala
When we call fdt_chosen in bootm we get a dummy mem reserve added for the ramdisk location before its relocated. We need to delete that mem reserve before we call fdt_initrd() for the final fixup. Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- lib_ppc/bootm.c | 16 +++- 1 files

Re: [U-Boot] [POWERPC][BUG] ramdisk: u-boot no longer boots a ramdisk with Linux 2.6.27-rc4

2008-09-05 Thread Kumar Gala
> I think we can drop this useless dummy call from fdt_chosen. > Has somebody any suggestions? That breaks some of the commands. I see the problem and will post a fix for you to try. - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.

[Mono-bugs] [Bug 423711] New: UsingWebBrowser process never exits after app is closed

2008-09-05 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=423711 Summary: UsingWebBrowser process never exits after app is closed Product: Mono: Class Libraries Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: No

Re: [U-Boot] Boot from jffs2 filesystem problem

2008-09-05 Thread Scott Wood
On Fri, Sep 05, 2008 at 09:39:50AM +0200, Pedro Luis D. L. wrote: > > Are you sure it's exactly the same? How could u-boot fail when loading > > the initrd if there is none specified? > > > > Yes, I'm afraid so. Take a look. It tries to load RAMDisk Image and then > reboots. Are you sure that

Re: [U-Boot] [POWERPC][BUG] ramdisk: u-boot no longer boots a ramdisk with Linux 2.6.27-rc4

2008-09-05 Thread Heiko Schocher
Hello Kumar, Kumar Gala wrote: > On Sep 5, 2008, at 3:27 AM, Heiko Schocher wrote: >> I actually trying to boot a Linux 2.6.27-rc4 Kernel with a Ramdisk >> and actual u-boot on a MPC82xx based board. And what should I say, >> it doesnt work anymore :-( >> >> Reason is the following commit: >> >> h

Re: [U-Boot] Boot from jffs2 filesystem problem [SOLVED?]

2008-09-05 Thread Pedro Luis D. L.
Hi everybody, All the problems I had seemed to be a hardware issue. I can't explain myself why, but the micro tried to boot from jffs2 once I changed it to another board. I've been working with TQM5200 B module on a STK52XX board. Maybe we screwed something with the board, because I've been exp

Re: [U-Boot] When will the u-boot support mpc8572pc board?

2008-09-05 Thread Kumar Gala
On Sep 5, 2008, at 2:47 AM, hushihui wrote: > hello, > > I just know the u-boot has supported mpc8572ds board. But I only > have a > mpc8672pc board. When will u-boot support mpc8572pc board. You should check with www.micetek.com as they seem to be the developer of that board. - k _

Re: [U-Boot] [POWERPC][BUG] ramdisk: u-boot no longer boots a ramdisk with Linux 2.6.27-rc4

2008-09-05 Thread Kumar Gala
On Sep 5, 2008, at 3:27 AM, Heiko Schocher wrote: > Hello Kumar, > > I actually trying to boot a Linux 2.6.27-rc4 Kernel with a Ramdisk > and actual u-boot on a MPC82xx based board. And what should I say, > it doesnt work anymore :-( > > Reason is the following commit: > > http://git.denx.de/?p=u

[U-Boot] [PATCH][for 1.3.5] 85xx: Ensure timebase is zero on secondary cores

2008-09-05 Thread Kumar Gala
The e500um says the timebase is volatile out of reset. To ensure TB sync works we need to make sure its zero. Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- cpu/mpc85xx/release.S |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/cpu/mpc85xx/release.S b/cpu/mpc85xx/r

[U-Boot] [PATCH 3/3] ppc4xx: Update CPCI405(AB) configuration

2008-09-05 Thread matthias . fuchs
From: Matthias Fuchs <[EMAIL PROTECTED]> This patch add FDT support and command line editing capabilities for CPCI405 and CPCI405AB boards. Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> --- include/configs/CPCI4052.h |6 ++ include/configs/CPCI405AB.h |6 ++ 2 files changed,

[U-Boot] [PATCH 2/3] ppc4xx: Cleanup CPCI405 linker script

2008-09-05 Thread matthias . fuchs
From: Matthias Fuchs <[EMAIL PROTECTED]> Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> --- board/esd/cpci405/u-boot.lds | 15 --- 1 files changed, 0 insertions(+), 15 deletions(-) diff --git a/board/esd/cpci405/u-boot.lds b/board/esd/cpci405/u-boot.lds index 21547ac..2a1fc31 10

[U-Boot] [PATCH 1/3] ppc4xx: Update CPCI405 variants handling

2008-09-05 Thread matthias . fuchs
From: Matthias Fuchs <[EMAIL PROTECTED]> This patch replaces the BOARD_REVISION variable in include/config.mk by a using a temporary include file in the platform directory. The former way does not work anymore and the latter is alos used by some other boards. Signed-off-by: Matthias Fuchs <[EMAI

[U-Boot] [PATCH] ppc4xx: Fix compilation warning for PIP405

2008-09-05 Thread Stefan Roese
This patch fixes a compilation warning for the PIP405 board. It moves the #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't occur anymore. I am a little unsure if this #ifdef is at the correct place now or if it could be removed completely. This needs to get tested on the PIP405

[U-Boot] [PATCH] ppc4xx: Fix compilation warning for canyonlands & glacier

2008-09-05 Thread Stefan Roese
Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> --- cpu/ppc4xx/miiphy.c | 10 +++--- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/cpu/ppc4xx/miiphy.c b/cpu/ppc4xx/miiphy.c index d303598..84b1bbe 100644 --- a/cpu/ppc4xx/miiphy.c +++ b/cpu/ppc4xx/miiphy.c @@ -236,28 +236,24 @

Re: [U-Boot] [PATCH 1/1 v4] ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY

2008-09-05 Thread Stefan Roese
On Friday 05 September 2008, Victor Gallardo wrote: > This patch adds GPCS, SGMII and M88E1112 PHY support > for the AMCC PPC460GT/EX processors. Applied to u-boot-ppc4xx. Thanks. Best regards, Stefan = DENX Software Engineering

Re: [U-Boot] ppc4xx: glacier broken with latest u-boot

2008-09-05 Thread Wolfgang Denk
Dear Stefan Roese, In message <[EMAIL PROTECTED]> you wrote: > > This problem is fixed with the patch I sent out this morning: > > devices: Use list_add_tail() instead of list_add() to register a device > > Thanks for reporting and initial debugging. > > Wolfgang, can you please pick up this p

Re: [U-Boot] [PATCH] devices: Use list_add_tail() instead of list_add() to register a device

2008-09-05 Thread Wolfgang Denk
Dear Stefan Roese, In message <[EMAIL PROTECTED]> you wrote: > This patch fixes a problem spotted on Glacier/Canyonlands (and most > likely lots of other board ports), that no serial output was seen > after console initialization in console_init_r(). This is because the > last added console device

Re: [U-Boot] [PATCH 2/2] Update Kilauea board support to use PPC4xx DDR autocalibration routines.

2008-09-05 Thread Stefan Roese
On Wednesday 03 September 2008, Adam Graham wrote: > Signed-off-by: Adam Graham <[EMAIL PROTECTED]> Applied to u-boot-ppc4xx repository. Thanks. Best regards, Stefan = DENX Software Engineering GmbH, MD: Wolfgang Denk & Detl

Re: [U-Boot] [PATCH 1/2] PPC4xx IBM Memory Controller DDR autocalibration routines.

2008-09-05 Thread Stefan Roese
On Wednesday 03 September 2008, Adam Graham wrote: > Alternate SDRAM DDR autocalibration routine that can be generically used > for any PPC4xx chips that have the IBM SDRAM Controller core allowing for > support of more DIMM/memory chip vendors and gets the DDR autocalibration > values which give t

Re: [U-Boot] [PATCH] ppc44x: Unification of virtex5 pp440 boards v4

2008-09-05 Thread Stefan Roese
On Monday 01 September 2008, Ricardo Ribalda Delgado wrote: > This patch provides an unificated way of handling xilinx v5 ppc440 boards. Added to u-boot-ppc4xx repository. Thanks. Best regards, Stefan = DENX Software Engineering

Re: [U-Boot] ppc4xx: glacier broken with latest u-boot

2008-09-05 Thread Stefan Roese
Adam, On Friday 05 September 2008, Adam Graham wrote: > The problem happens within the console_init_r() routine called from the > board_init_r() function. This problem is fixed with the patch I sent out this morning: devices: Use list_add_tail() instead of list_add() to register a device Tha

[U-Boot] [PATCH] devices: Use list_add_tail() instead of list_add() to register a device

2008-09-05 Thread Stefan Roese
This patch fixes a problem spotted on Glacier/Canyonlands (and most likely lots of other board ports), that no serial output was seen after console initialization in console_init_r(). This is because the last added console device was used instead of the first added. This patch fixes this problem b

[U-Boot] [POWERPC][BUG] ramdisk: u-boot no longer boots a ramdisk with Linux 2.6.27-rc4

2008-09-05 Thread Heiko Schocher
Hello Kumar, I actually trying to boot a Linux 2.6.27-rc4 Kernel with a Ramdisk and actual u-boot on a MPC82xx based board. And what should I say, it doesnt work anymore :-( Reason is the following commit: http://git.denx.de/?p=u-boot.git;a=commitdiff;h=2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b#p

[U-Boot] When will the u-boot support mpc8572pc board?

2008-09-05 Thread hushihui
hello, I just know the u-boot has supported mpc8572ds board. But I only have a mpc8672pc board. When will u-boot support mpc8572pc board. Thanks. Patrick ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Boot from jffs2 filesystem problem

2008-09-05 Thread Pedro Luis D. L.
On Thu, 4 Sep 2008 11:12:46 -0500, Scott wrote: >> I've already tried with: >> - bootm ${kernel_addr} - ${fdt_addr} > > This is the correct one. > >> And always with the same result... > > Are you sure it's exactly the same? How could u-boot fail when loading > the initrd if there is none s