public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] disable "." when ext2load
@ 2008-02-18 15:38 Pierre Savary
  0 siblings, 0 replies; 3+ messages in thread
From: Pierre Savary @ 2008-02-18 15:38 UTC (permalink / raw)
  To: u-boot

Hi all,

I use U-Boot 1.1.5 to load my Linux kernel. The image of this kernel is on a
MMC. So, I make 
"U-Boot > mmcinit"
and after I make 
"U-Boot > ext2load mmc 0:1 21500000 vmImage"
Next, many "." appear on the console while the image is not totally load on
the SDRam. I don't want print this dot. So how can I disable this? I have
already search "printf (".");" or "puts (".");" or others things ... but I
have not found where is this line on the source code ... 

Could you help me please?
Thanks in advance

Pierre

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot-Users] disable "." when ext2load
@ 2008-02-18 19:08 Ken.Fuchs at bench.com
  2008-02-19  8:07 ` Pierre Savary
  0 siblings, 1 reply; 3+ messages in thread
From: Ken.Fuchs at bench.com @ 2008-02-18 19:08 UTC (permalink / raw)
  To: u-boot

> "U-Boot > ext2load mmc 0:1 21500000 vmImage"

> Next, many "." appear on the console while the image is not 
> totally load on the SDRam. I don't want print this dot.  So
> how can I disable this?

The mmc_bread() routine in ./cpu/*/*/atmel_mci.c contains

putc('.');

You probably want to comment out or remove this line.

Cheers,

Ken Fuchs

> -----Original Message-----
> From: u-boot-users-bounces at lists.sourceforge.net 
> [mailto:u-boot-users-bounces at lists.sourceforge.net] On Behalf 
> Of Pierre Savary
> Sent: Monday, February 18, 2008 09:38
> To: U-Boot-Users
> Subject: [U-Boot-Users] disable "." when ext2load
> 
> 
> Hi all,
> 
> I use U-Boot 1.1.5 to load my Linux kernel. The image of this 
> kernel is on a
> MMC. So, I make 
> "U-Boot > mmcinit"
> and after I make 
> "U-Boot > ext2load mmc 0:1 21500000 vmImage"
> Next, many "." appear on the console while the image is not 
> totally load on
> the SDRam. I don't want print this dot. So how can I disable 
> this? I have
> already search "printf (".");" or "puts (".");" or others 
> things ... but I
> have not found where is this line on the source code ... 
> 
> Could you help me please?
> Thanks in advance
> 
> Pierre
> 
> 
> --------------------------------------------------------------
> -----------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot-Users] disable "." when ext2load
  2008-02-18 19:08 Ken.Fuchs at bench.com
@ 2008-02-19  8:07 ` Pierre Savary
  0 siblings, 0 replies; 3+ messages in thread
From: Pierre Savary @ 2008-02-19  8:07 UTC (permalink / raw)
  To: u-boot

Ok, it works !
Thanks a lot

Pierre

-----Message d'origine-----
De?: u-boot-users-bounces at lists.sourceforge.net
[mailto:u-boot-users-bounces at lists.sourceforge.net] De la part de
Ken.Fuchs at bench.com
Envoy??: lundi 18 f?vrier 2008 20:08
??: u-boot-users at lists.sourceforge.net
Objet?: Re: [U-Boot-Users] disable "." when ext2load

> "U-Boot > ext2load mmc 0:1 21500000 vmImage"

> Next, many "." appear on the console while the image is not 
> totally load on the SDRam. I don't want print this dot.  So
> how can I disable this?

The mmc_bread() routine in ./cpu/*/*/atmel_mci.c contains

putc('.');

You probably want to comment out or remove this line.

Cheers,

Ken Fuchs

> -----Original Message-----
> From: u-boot-users-bounces at lists.sourceforge.net 
> [mailto:u-boot-users-bounces at lists.sourceforge.net] On Behalf 
> Of Pierre Savary
> Sent: Monday, February 18, 2008 09:38
> To: U-Boot-Users
> Subject: [U-Boot-Users] disable "." when ext2load
> 
> 
> Hi all,
> 
> I use U-Boot 1.1.5 to load my Linux kernel. The image of this 
> kernel is on a
> MMC. So, I make 
> "U-Boot > mmcinit"
> and after I make 
> "U-Boot > ext2load mmc 0:1 21500000 vmImage"
> Next, many "." appear on the console while the image is not 
> totally load on
> the SDRam. I don't want print this dot. So how can I disable 
> this? I have
> already search "printf (".");" or "puts (".");" or others 
> things ... but I
> have not found where is this line on the source code ... 
> 
> Could you help me please?
> Thanks in advance
> 
> Pierre
> 
> 
> --------------------------------------------------------------
> -----------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
> 

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-02-19  8:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-18 15:38 [U-Boot-Users] disable "." when ext2load Pierre Savary
  -- strict thread matches above, loose matches on Subject: below --
2008-02-18 19:08 Ken.Fuchs at bench.com
2008-02-19  8:07 ` Pierre Savary

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox