Re: [U-Boot] [PATCH v4] Separate mtdparts command from jffs2

2009-04-20 Thread Stefan Roese
On Tuesday 21 April 2009, Ladislav Michl wrote: > On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote: > > Currently the mtdparts commands are included in the jffs2 command > > support. This doesn't make sense anymore since other commands (e.g. UBI) > > use this infrastructure as well now.

[U-Boot] standalone application for ppc internal registers access

2009-04-20 Thread eija_flight
Hello, I am using GCC inline assembly in standalone applications to access my cpu (ppc) internal registers. And it seems some of the registers were needed by U-boot to run, because when I am accessing some of these registers via standalone applications, the board will go reset or hangs. Is there

Re: [U-Boot] U-Boot for MPC8360E-RDK with 512MB of DDR2 RAM

2009-04-20 Thread Kim Phillips
On Mon, 20 Apr 2009 15:12:23 -0400 cmfai...@rockwellcollins.com wrote: > Does anyone have any idea why this doesn't work? > > It seems like a pretty trivial update, but it causes U-Boot to hang up at > the "DRAM:" line (see below). you may have to define CONFIG_VERY_BIG_RAM and CONFIG_MAX_MEM_M

Re: [U-Boot] Kconfig menu layout

2009-04-20 Thread Jon Smirl
On Mon, Apr 20, 2009 at 8:06 PM, Jon Smirl wrote: > On Mon, Apr 20, 2009 at 7:57 PM, Kumar Gala wrote: >> >> On Apr 20, 2009, at 5:01 PM, Jon Smirl wrote: >> >>> On Mon, Apr 20, 2009 at 5:11 PM, Kumar Gala >>> wrote: In chatting w/Wolfgang on IRC he felt that we should maintain the >>>

Re: [U-Boot] Kconfig menu layout

2009-04-20 Thread Jon Smirl
On Mon, Apr 20, 2009 at 7:57 PM, Kumar Gala wrote: > > On Apr 20, 2009, at 5:01 PM, Jon Smirl wrote: > >> On Mon, Apr 20, 2009 at 5:11 PM, Kumar Gala >> wrote: >>> >>> In chatting w/Wolfgang on IRC he felt that we should maintain the >>> highlevel picking a board implies ARCH and other settings.

Re: [U-Boot] Kconfig menu layout

2009-04-20 Thread Kumar Gala
On Apr 20, 2009, at 5:01 PM, Jon Smirl wrote: > On Mon, Apr 20, 2009 at 5:11 PM, Kumar Gala > wrote: >> In chatting w/Wolfgang on IRC he felt that we should maintain the >> highlevel picking a board implies ARCH and other settings. >> >> However this seems like a lot of boards in one list.. To

[U-Boot] [PATCH 4/4] NetStar: disable CONFIG_CMD_JFFS2

2009-04-20 Thread Ladislav Michl
Now, when CONFIG_CMD_MTDPARTS exists as a separate option it is no longer necessary to enable CONFIG_CMD_JFFS2. Signed-off-by: Ladislav Michl --- include/configs/netstar.h |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/include/configs/netstar.h b/include/configs/nets

[U-Boot] [PATCH 3/4] NetStar: fix eeprom utility indentation and spelling

2009-04-20 Thread Ladislav Michl
Signed-off-by: Ladislav Michl --- board/netstar/eeprom.c | 17 - 1 files changed, 8 insertions(+), 9 deletions(-) diff --git a/board/netstar/eeprom.c b/board/netstar/eeprom.c index 5783bed..5ee89e1 100644 --- a/board/netstar/eeprom.c +++ b/board/netstar/eeprom.c @@ -37,17 +37,

[U-Boot] [PATCH 2/4] NetStar: remove debug junk leaked into eeprom utility

2009-04-20 Thread Ladislav Michl
It is a shame such a crap ever leaked into official repository. I'm sorry about that. Signed-off-by: Ladislav Michl --- board/netstar/eeprom.c |8 +-- board/netstar/eeprom_start.S | 190 +++--- 2 files changed, 14 insertions(+), 184 deletions(-) r

[U-Boot] [PATCH 1/4] NetStar: make crcit utility more understandable

2009-04-20 Thread Ladislav Michl
Signed-off-by: Ladislav Michl --- board/netstar/crcit.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/board/netstar/crcit.c b/board/netstar/crcit.c index e0cea9b..0eef41a 100644 --- a/board/netstar/crcit.c +++ b/board/netstar/crcit.c @@ -56,13 +56,14 @@ static

[U-Boot] [PATCH 0/4] NetStar board update

2009-04-20 Thread Ladislav Michl
Dear Jean-Christophe, purpose of this patch serie is to ship next board serie with u-boot 2009.06 without any external patches needed. For first time ever... Thank you, ladis ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mail

Re: [U-Boot] [PATCH v4] Separate mtdparts command from jffs2

2009-04-20 Thread Ladislav Michl
On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote: > Currently the mtdparts commands are included in the jffs2 command support. > This doesn't make sense anymore since other commands (e.g. UBI) use this > infrastructure as well now. This patch separates the mtdparts commands from > the j

Re: [U-Boot] Kconfig menu layout

2009-04-20 Thread Jon Smirl
On Mon, Apr 20, 2009 at 5:11 PM, Kumar Gala wrote: > In chatting w/Wolfgang on IRC he felt that we should maintain the > highlevel picking a board implies ARCH and other settings. > > However this seems like a lot of boards in one list.. To get a rough > order of magnitude MAKEALL is ~880 lines.  

[U-Boot] Kconfig menu layout

2009-04-20 Thread Kumar Gala
In chatting w/Wolfgang on IRC he felt that we should maintain the highlevel picking a board implies ARCH and other settings. However this seems like a lot of boards in one list.. To get a rough order of magnitude MAKEALL is ~880 lines. How can we reduce this to make it a bit more manageable

Re: [U-Boot] [PATCH] Default to HOSTARCH if ARCH isn't specified

2009-04-20 Thread Scott Wood
Wolfgang Denk wrote: > Dear Kumar Gala, > > In message <1240247017-1069-1-git-send-email-ga...@kernel.crashing.org> you > wrote: >> diff --git a/Makefile b/Makefile >> index e91c051..c56d6db 100644 >> --- a/Makefile >> +++ b/Makefile >> @@ -137,6 +137,10 @@ ifeq ($(ARCH),powerpc) >> ARCH = ppc >

Re: [U-Boot] [PATCH] Default to HOSTARCH if ARCH isn't specified

2009-04-20 Thread Wolfgang Denk
Dear Kumar Gala, In message <1240247017-1069-1-git-send-email-ga...@kernel.crashing.org> you wrote: > Its possible to build natively on several platforms so we might not > explicitly set ARCH but detect it via HOSTARCH. As such there are > some things that expect ARCH to be set to work correctly

Re: [U-Boot] [PATCH] arm925t: Fix CONFIG_SYS_HZ to 1000

2009-04-20 Thread Ladislav Michl
On Mon, Apr 20, 2009 at 07:38:21PM +0200, Dirk Behme wrote: > Dear Ladis, > > Ladislav Michl wrote: >> Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of >> get_timer. > > In the other mail you mentioned OMAP1, which would include the ARM926 > based devices (e.g. OSK), too. A

Re: [U-Boot] [PATCH] arm925t: Fix CONFIG_SYS_HZ to 1000

2009-04-20 Thread Ladislav Michl
On Mon, Apr 20, 2009 at 08:27:34PM +0200, Dirk Behme wrote: > Dear Ladis, > > ah, and some remarks on the patch itself ;) Thanks, I'm glad someone still cares about ancient stuff. > Ladislav Michl wrote: >> Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of >> get_timer. >> >

Re: [U-Boot] [PATCH] OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000.

2009-04-20 Thread Ladislav Michl
On Mon, Apr 20, 2009 at 07:27:29PM +0200, Dirk Behme wrote: > Ladislav Michl wrote: >> After messing with OMAP1 timer code (which is copied again and again over >> tree) I found such a reason. It is called 'void udelay(unsigned long usec)' >> implementation and I hereby leaving its bugfixing as an

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Kumar Gala
On Apr 20, 2009, at 2:08 PM, Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <20090420120239.gc19...@game.jcrosoft.org> you wrote: >> >>> Beyond adding Kconfig's what's left to be done? >> I've write a first batch of the generic Kconfig >> for commmands, env, fs, disk

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 14:42:24 Scott Wood wrote: > Mike Frysinger wrote: > > no one said otherwise. please read the thread context before chiming in. > > if you had, you'd know that i was taking issue with the position of > > "let's not do XXX in v1 because it exists in v2", > > I don't recall

Re: [U-Boot] [PATCH] Default to HOSTARCH if ARCH isn't specified

2009-04-20 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:03 Mon 20 Apr , Kumar Gala wrote: > Its possible to build natively on several platforms so we might not > explicitly set ARCH but detect it via HOSTARCH. As such there are > some things that expect ARCH to be set to work correctly. > > Signed-off-by: Kumar Gala Acked-by: Jean-Christoph

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Wolfgang Denk
Dear Mike, In message <200904201120.51435.vap...@gentoo.org> you wrote: > > i never said "kill it now"; quite the opposite really. in fact, it looks > like > you really arent taking your own saying to heart. my point is to look to the > future and stop wasting resources. if v1 incorporates a

[U-Boot] U-Boot for MPC8360E-RDK with 512MB of DDR2 RAM

2009-04-20 Thread cmfairfa
Hi, I have an MPC8360-RDK board that has 512MB of DDR2 RAM. I updated the MPC8360ERDK.h file from the latest archive ( 2009.03-rc2) to add support for the 512MB of RAM. (from the default 256MB). Basically, I just did the following: changed CFG_DDR_SIZE from 256 to 512 changed CFG_DDR_CS0_BNDS

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200904201042.10253.vap...@gentoo.org> you wrote: > > my concern isnt really narrow to the Blackfin port. i was using it as a > practical example. we've talked about v2 in the past as the answer to many > of > our problems and so we dont bother doing it in v1.

Re: [U-Boot] U-Boot fw_setenv problem.

2009-04-20 Thread Wolfgang Denk
Dear srikanth bomma, In message <1923dd630904200731x37b8014evea30c3c3c0857...@mail.gmail.com> you wrote: > > My U-Boot version is 1.2.0 (Dec 31 2008) release. ... > But when trying to set the uboot env with fw_setenv we have to following > errors Please use current code. 1.2.0 is too old to care

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090420120239.gc19...@game.jcrosoft.org> you wrote: > > > Beyond adding Kconfig's what's left to be done? > I've write a first batch of the generic Kconfig > for commmands, env, fs, disk, lib_generic and drivers > > I've start to add the at91 ar

Re: [U-Boot] clearing console screen

2009-04-20 Thread Wolfgang Denk
Dear "Muralitharan Perumal", In message <49ec3790.2000...@pace.com> you wrote: > > Is there any UBoot command to clear the Serial Console screen? Or any > other way to do that? A serial console port is a sequential stream of bytes without any such notation as "screen". Thus there is no command

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Scott Wood
Mike Frysinger wrote: > no one said otherwise. please read the thread context before chiming in. if > you had, you'd know that i was taking issue with the position of "let's not > do > XXX in v1 because it exists in v2", I don't recall anyone advocating that position, other than your original

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 11:34:33 Sascha Hauer wrote: > On Mon, Apr 20, 2009 at 11:20:50AM -0400, Mike Frysinger wrote: > > On Monday 20 April 2009 10:53:39 Robert Schwebel wrote: > > > On Mon, Apr 20, 2009 at 10:42:08AM -0400, Mike Frysinger wrote: > > > > > U-Boot-v2 is used here to do real work i

Re: [U-Boot] environment variables crc

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 11:46:22 Gerrit Van Damme wrote: > I've copied a flash image of one board to another one and changed the > ethaddr (environment variable) > of course when I start Uboot now the system says: CRC bad, using default > environment variables. > Now what I would like to do is reca

Re: [U-Boot] [PATCH] arm925t: Fix CONFIG_SYS_HZ to 1000

2009-04-20 Thread Dirk Behme
Dear Ladis, ah, and some remarks on the patch itself ;) Ladislav Michl wrote: > Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of > get_timer. > > Signed-off-by: Ladislav Michl > > diff --git a/cpu/arm925t/interrupts.c b/cpu/arm925t/interrupts.c > index e5c77f7..a22be66 1

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 11:39:52 Grant Likely wrote: > On Mon, Apr 20, 2009 at 9:34 AM, Sascha Hauer wrote: > > On Mon, Apr 20, 2009 at 11:20:50AM -0400, Mike Frysinger wrote: > >> On Monday 20 April 2009 10:53:39 Robert Schwebel wrote: > >> > On Mon, Apr 20, 2009 at 10:42:08AM -0400, Mike Frysinge

[U-Boot] Congratulations

2009-04-20 Thread primecare
Confirm this receipt by contacting the due process unit officer Mr Phil Herald for the sum of £1,000,000 GBP E-mail:(phun...@btinternet.com)Fill the details: FullName,Address,Tel,Occupation: Regards Mrs.Caroline Jude ___ U-Boot mailing list U-Boot@lists

Re: [U-Boot] [PATCH] arm925t: Fix CONFIG_SYS_HZ to 1000

2009-04-20 Thread Dirk Behme
Dear Ladis, Ladislav Michl wrote: > Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of > get_timer. In the other mail you mentioned OMAP1, which would include the ARM926 based devices (e.g. OSK), too. Any special reason why in here you deal only with the 925 based ones? The

Re: [U-Boot] [PATCH] OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000.

2009-04-20 Thread Dirk Behme
Dear Ladis, Ladislav Michl wrote: > On Thu, Apr 02, 2009 at 12:43:53AM +0200, Wolfgang Denk wrote: >> In message <20090331202939.gi24...@game.jcrosoft.org> you wrote: >>> On 11:19 Tue 17 Mar , Dirk Behme wrote: Fix OMAP3 timer handling to 1ms tick and CONFIG_SYS_HZ to 1000. Clean up

[U-Boot] [PATCH] arm925t: Fix CONFIG_SYS_HZ to 1000

2009-04-20 Thread Ladislav Michl
Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of get_timer. Signed-off-by: Ladislav Michl diff --git a/cpu/arm925t/interrupts.c b/cpu/arm925t/interrupts.c index e5c77f7..a22be66 100644 --- a/cpu/arm925t/interrupts.c +++ b/cpu/arm925t/interrupts.c @@ -1,4 +1,7 @@ /* + * (C

Re: [U-Boot] [PATCH] OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000.

2009-04-20 Thread Ladislav Michl
On Thu, Apr 02, 2009 at 12:43:53AM +0200, Wolfgang Denk wrote: > In message <20090331202939.gi24...@game.jcrosoft.org> you wrote: > > On 11:19 Tue 17 Mar , Dirk Behme wrote: > > > Fix OMAP3 timer handling to 1ms tick and CONFIG_SYS_HZ to 1000. > > > Clean up macros and comments. > > > > > > Si

[U-Boot] [PATCH] Default to HOSTARCH if ARCH isn't specified

2009-04-20 Thread Kumar Gala
Its possible to build natively on several platforms so we might not explicitly set ARCH but detect it via HOSTARCH. As such there are some things that expect ARCH to be set to work correctly. Signed-off-by: Kumar Gala --- Makefile |4 1 files changed, 4 insertions(+), 0 deletions(-) d

Re: [U-Boot] Build errors u-boot-v2 iMX27

2009-04-20 Thread Sascha Hauer
Hi Bill, On Mon, Apr 20, 2009 at 10:57:49AM -0400, Bill Cook wrote: > Dear ML, > > I'm trying to build u-boot-v2 for an iMX27 based board. I'm getting a > HW/SW floating point mismatch error and hope someone will point me > to a solution. Building with: > make ARCH=arm CROSS_COMPILE=arm-eabi-

[U-Boot] setting of ARCH based on HOSTARCH?

2009-04-20 Thread Kumar Gala
Wolfgang, I've been building for sometime now on a native PPC box w/o any issue. However in looking at the Kconfig patches it showed in an issue in that I don't ever set ARCH to anything. It seems like there are two solutions to this: 1. ARCH is expected to be set explicitly be the user 2

Re: [U-Boot] [PATCH v2] OMAP3: Remove legacy NAND defines

2009-04-20 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 10:21 Mon 20 Apr , Scott Wood wrote: >> On Mon, Apr 20, 2009 at 07:19:57AM +0200, Wolfgang Denk wrote: >>> Dear Jean-Christophe PLAGNIOL-VILLARD, >>> >>> In message <20090417053017.gd31...@game.jcrosoft.org> you wrote: On

[U-Boot] AmigaOneG3SE

2009-04-20 Thread Peter Tyser
Hi all, I just tried compiling u-boot for the AmigaOneG3SE during testing of a code change and ran into a number of compiler warnings followed by a compiler error. CONFIG_AMIGAONEG3SE is also found in a lot of common files: common/cmd_bootm.c:#ifdef CONFIG_AMIGAONEG3SE common/cmd_fdc.c:#ifdef CONF

Re: [U-Boot] Kconfig support - menuconfig broken?

2009-04-20 Thread Kumar Gala
On Apr 20, 2009, at 10:26 AM, Kumar Gala wrote: > When I try to do a make menuconfig I get: > > [ga...@blarg u-boot-85xx]$ make menuconfig > make -C scripts/kconfig menuconfig > make[1]: Entering directory `/local/home/galak/git/u-boot-85xx/ > scripts/ > kconfig' > gcc -I/usr/include/ncurses -DC

[U-Boot] [PATCH] cmd_ide: Remove unused AmigaOneG3SE code

2009-04-20 Thread Peter Tyser
The output_data_short() and input_data_short() functions for the AmigaOneG3SE are unused and result in compiler warnings. Signed-off-by: Peter Tyser --- common/cmd_ide.c | 44 1 files changed, 0 insertions(+), 44 deletions(-) diff --git a/common/cm

[U-Boot] [PATCH] AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition

2009-04-20 Thread Peter Tyser
Signed-off-by: Peter Tyser --- include/configs/AmigaOneG3SE.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/AmigaOneG3SE.h b/include/configs/AmigaOneG3SE.h index b71da1f..fe04f27 100644 --- a/include/configs/AmigaOneG3SE.h +++ b/include/configs/AmigaOne

Re: [U-Boot] [PATCH v2] OMAP3: Remove legacy NAND defines

2009-04-20 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:21 Mon 20 Apr , Scott Wood wrote: > On Mon, Apr 20, 2009 at 07:19:57AM +0200, Wolfgang Denk wrote: > > Dear Jean-Christophe PLAGNIOL-VILLARD, > > > > In message <20090417053017.gd31...@game.jcrosoft.org> you wrote: > > > On 20:15 Tue 14 Apr , Dirk Behme wrote: > > > > Remove remainin

[U-Boot] [PATCH 2/2] Replace __asm references with __asm__

2009-04-20 Thread Peter Tyser
__asm__ follows gcc's documented syntax and is generally more common than __asm. This change is only asthetic and should not affect functionality. Signed-off-by: Peter Tyser --- board/MAI/AmigaOneG3SE/enet.c | 16 board/MAI/AmigaOneG3SE/flash_new.c | 10 +- boa

[U-Boot] [PATCH 1/2] Replace __attribute references with __attribute__

2009-04-20 Thread Peter Tyser
__attribute__ follows gcc's documented syntax and is generally more common than __attribute. This change is only asthetic and should not affect functionality. Signed-off-by: Peter Tyser --- cpu/arm920t/at91rm9200/ether.c |5 +++-- cpu/arm920t/s3c24x0/usb_ohci.h |8 cpu/mips/au1

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Grant Likely
On Mon, Apr 20, 2009 at 9:34 AM, Sascha Hauer wrote: > On Mon, Apr 20, 2009 at 11:20:50AM -0400, Mike Frysinger wrote: >> On Monday 20 April 2009 10:53:39 Robert Schwebel wrote: >> > On Mon, Apr 20, 2009 at 10:42:08AM -0400, Mike Frysinger wrote: >> > > > U-Boot-v2 is used here to do real work in

[U-Boot] environment variables crc

2009-04-20 Thread Gerrit Van Damme
Hello all, I've copied a flash image of one board to another one and changed the ethaddr (environment variable) of course when I start Uboot now the system says: CRC bad, using default environment variables. Now what I would like to do is recalculate that CRC, change it in the image and then co

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Sascha Hauer
On Mon, Apr 20, 2009 at 11:20:50AM -0400, Mike Frysinger wrote: > On Monday 20 April 2009 10:53:39 Robert Schwebel wrote: > > On Mon, Apr 20, 2009 at 10:42:08AM -0400, Mike Frysinger wrote: > > > > U-Boot-v2 is used here to do real work in our projects. If it isn't > > > > what you need, it is perf

[U-Boot] Kconfig support - menuconfig broken?

2009-04-20 Thread Kumar Gala
When I try to do a make menuconfig I get: [ga...@blarg u-boot-85xx]$ make menuconfig make -C scripts/kconfig menuconfig make[1]: Entering directory `/local/home/galak/git/u-boot-85xx/scripts/ kconfig' gcc -I/usr/include/ncurses -DCURSES_LOC="" -DLOCALE -I/ local/home/galak/git/u-boot-85xx/script

Re: [U-Boot] ppc 85xx inline assembly

2009-04-20 Thread Scott Wood
On Fri, Apr 17, 2009 at 05:13:06PM -0700, Qingyu Song wrote: > Hello, > I am trying to understand the inline assembly function out_be32 > > extern inline void out_be32(volatile unsigned __iomem *addr, int val) > { > __asm__ __volatile__("sync; stw%U0%X0 %1,%0" : "=m" (*addr) : "r" > (val)); >

Re: [U-Boot] [PATCH v2] OMAP3: Remove legacy NAND defines

2009-04-20 Thread Scott Wood
On Mon, Apr 20, 2009 at 07:19:57AM +0200, Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <20090417053017.gd31...@game.jcrosoft.org> you wrote: > > On 20:15 Tue 14 Apr , Dirk Behme wrote: > > > Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 10:53:39 Robert Schwebel wrote: > On Mon, Apr 20, 2009 at 10:42:08AM -0400, Mike Frysinger wrote: > > > U-Boot-v2 is used here to do real work in our projects. If it isn't > > > what you need, it is perfectly fine if you ignore it. > > > > my concern isnt really narrow to th

[U-Boot] Build errors u-boot-v2 iMX27

2009-04-20 Thread Bill Cook
Dear ML, I'm trying to build u-boot-v2 for an iMX27 based board. I'm getting a HW/SW floating point mismatch error and hope someone will point me to a solution. Building with: make ARCH=arm CROSS_COMPILE=arm-eabi- It works along fine until I get an error on each of these files: arch/arm/lib/_

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Jerry Van Baren
Robert Schwebel wrote: > On Mon, Apr 20, 2009 at 10:42:08AM -0400, Mike Frysinger wrote: >>> U-Boot-v2 is used here to do real work in our projects. If it isn't >>> what you need, it is perfectly fine if you ignore it. >> my concern isnt really narrow to the Blackfin port. i was using it as >> a pr

Re: [U-Boot] Problem cloning Git

2009-04-20 Thread Remco Poelstra
Detlev Zundel schreef: > Just checked here and I don't see any problems. Maybe try again, or try > upgrading git on your end. For the test I used 1.5.6.5 and 1.6.2.2, > both without a problem. Thanks for your reply. Upgrading to a newer version indeed fixed the problem. Regards, Remco Poelstra

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Robert Schwebel
On Mon, Apr 20, 2009 at 10:42:08AM -0400, Mike Frysinger wrote: > > U-Boot-v2 is used here to do real work in our projects. If it isn't > > what you need, it is perfectly fine if you ignore it. > > my concern isnt really narrow to the Blackfin port. i was using it as > a practical example. we've ta

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 10:04:14 Robert Schwebel wrote: > On Mon, Apr 20, 2009 at 09:49:38AM -0400, Mike Frysinger wrote: > > > If you aim for feature completeness, use v1 and don't care about v2. > > > v2 is for people who care about *design*. > > > > so v2 is good for thinking about things while

[U-Boot] U-Boot fw_setenv problem.

2009-04-20 Thread srikanth bomma
Hello all, My U-Boot version is 1.2.0 (Dec 31 2008) release. fw_printenv is working fine. . ~ # fw_printenv bootdelay=3 baudrate=115200 bootfile="uImage" mtdparts=davinci-nand.0:512k(ubl),128k(uboot-env),512k(uboot),2m(kernel),-(app) stdin=serial stdout=serial stderr=serial ipaddr=192.168.2.110 g

Re: [U-Boot] clearing console screen

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 04:51:28 Muralitharan Perumal wrote: > Is there any UBoot command to clear the Serial Console screen? Or any > other way to do that? CTRL+L > This E-mail and any attachments hereto are strictly confidential and fix your e-mail. this crap has no business on open source ma

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Robert Schwebel
On Mon, Apr 20, 2009 at 09:49:38AM -0400, Mike Frysinger wrote: > > If you aim for feature completeness, use v1 and don't care about v2. > > v2 is for people who care about *design*. > > so v2 is good for thinking about things while v1 is good for people > who want to do real work. if that's the st

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Mike Frysinger
On Monday 20 April 2009 02:52:44 Robert Schwebel wrote: > On Mon, Apr 20, 2009 at 12:56:53AM -0400, Mike Frysinger wrote: > > > We have even Blackfin support in v2, and that for almost all of the > > > time it is actually there. Sure - if you need feature completeness, > > > you'll have to stay wit

Re: [U-Boot] [ANNOUNCE] Kconfig support

2009-04-20 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:38 Sun 19 Apr , Kumar Gala wrote: > > On Apr 18, 2009, at 11:25 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: > >> Hi all, >> >> I've upload on the u-boot-arm tree in kconfig branch >> some patch on which I work to all us to use Kconfig >> >> It's a dev branch not all patch a

Re: [U-Boot] mpc83xx: USB: "Machine check in kernel mode" with usb start on mpc8315erdb

2009-04-20 Thread Michael Trimarchi
Hi, Remy Bohmer wrote: > Hello Michael, > > Have you any idea about this issue? > > Kind Regards, > > Remy > > 2009/4/17 Mahajan Vivek-B08308 : > >> Hello there, >> >> I built u-boot for mpc8315erdb from the current master @ >> http://git.denx.de/u-boot.git/ after enabling USB via adding the f

[U-Boot] clearing console screen

2009-04-20 Thread Muralitharan Perumal
Hi, Is there any UBoot command to clear the Serial Console screen? Or any other way to do that? Best Regards Murali This E-mail and any attachments hereto are strictly confidential and intended solely for the addressee. If you are not the intended addressee please notify the sender by return