public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] Detailed  documents......
@ 2006-03-17 11:57 Mehul Gohel
  2006-03-17 21:06 ` Wolfgang Denk
  0 siblings, 1 reply; 7+ messages in thread
From: Mehul Gohel @ 2006-03-17 11:57 UTC (permalink / raw)
  To: u-boot

Hi All,
    I am fresh engineer in this field working with DM6446 EVM DAVINCI board
which contains DSP as well ARMEJ9. I need to bring that board up. I don't
have any experience of how to load the boot loader, how the things goes
after boot loader get loaded, so and so. I am working by reading all the
document in u-boot source tree and going through the code of u-boot-1.1.3.
So can anybody help me to provide document kind of material that gives step
wise DETAIL of all the steps starting from boot loader installation to
running kernel. such that it helps me to make my task ease. I am going to
download the boot loader file through UART to internal RAM of ARM. Because I
am confused that how to write the image in NAND FLASH, thats why I am using
the other option and that is to download the boot image from UART where one
host utility will be runing on the host PC that does few handshaking with
board's primary boot loader and than downloads secondry boot loader from the
host PC.
 
Thanks,
Mehul Gohel
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20060317/6b3cf61b/attachment.htm 

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

* [U-Boot-Users] Detailed documents......
  2006-03-17 11:57 [U-Boot-Users] Detailed documents Mehul Gohel
@ 2006-03-17 21:06 ` Wolfgang Denk
  2006-03-18 11:19   ` Mehul Gohel
  0 siblings, 1 reply; 7+ messages in thread
From: Wolfgang Denk @ 2006-03-17 21:06 UTC (permalink / raw)
  To: u-boot

In message <E1FKDWn-00029C-Df@mail.sourceforge.net> you wrote:
> 
>     I am fresh engineer in this field working with DM6446 EVM DAVINCI board
> which contains DSP as well ARMEJ9. I need to bring that board up. I don't
> have any experience of how to load the boot loader, how the things goes
> after boot loader get loaded, so and so. I am working by reading all the
> document in u-boot source tree and going through the code of u-boot-1.1.3.

Why are you starting with OLD code? Please use the top of  tree  from
the git repository instead!

> am confused that how to write the image in NAND FLASH, thats why I am using
> the other option and that is to download the boot image from UART where one
> host utility will be runing on the host PC that does few handshaking with
> board's primary boot loader and than downloads secondry boot loader from the
> host PC.

You should really start reading the FAQ.

> Content-Type: text/html;
> 	charset="us-ascii"
> Content-Transfer-Encoding: quoted-printable

And NEVER post HTML!

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"My name is Linus Torvalds, you messed with my kernel, prepare to die"
                                                  - Linus Torvalds in
      <Pine.LNX.3.91.960426110644.24860I-100000@linux.cs.Helsinki.FI>

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

* [U-Boot-Users] Detailed documents......
  2006-03-18 11:19   ` Mehul Gohel
@ 2006-03-18  9:26     ` Wolfgang Denk
  0 siblings, 0 replies; 7+ messages in thread
From: Wolfgang Denk @ 2006-03-18  9:26 UTC (permalink / raw)
  To: u-boot

In message <441BECC9.10204@einfochips.com> you wrote:
> 
> well sorry for posting mail in HTML, I've started compiling uboot and at 
> the first instant I am getting error something like

And please also never full-quote!

> [root at localhost u-boot-1.1.3]# make davinci_config
> Configuring for davinci board...

I understand this is your custom board configuration, right?

> make[1]: Entering directory `/home/mehulgohel/u-boot-1.1.3/post/cpu'
> make[1]: *** No rule to make target `asm.S', needed by `.depend'.  Stop.

This message is clear: the file "asm.S" in  directory  "post/cpu"  is
needed, but cannot be found. Seems your source code is incomplete.

> Did I went wrong any where, I've not touched anything else not any 
> configuration parameter or anything,.

Obviously this is not a complete source code tree.

And, for the last time (I  will  not  repeat  this):  don't  use  old
versions  for  current  work. Please use the top-of-tree version from
the git repository instead.

> Content-Type: text/x-vcard; charset=utf-8;
>  name="mehul.gohel.vcf"
> Content-Transfer-Encoding: 7bit

Arghh.. and omit such crap, please.

> eInfochips Business Disclaimer:
> This message may contain confidential, proprietary or legally Privileged information. In case you are not the original intended Recipient of the message, you must not, directly or indirectly, use, Disclose, distribute, print, or copy any part of this me

And never add such stupid disclaimers, either!


It seems you are  really  trying  hard  to  drop  one  clanger  after
another. This is not a good way to get free help...


Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
It's all Klatchian to me.
        - Terry Pratchett & Stephen Briggs, _The Discworld Companion_

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

* [U-Boot-Users] Detailed documents......
  2006-03-17 21:06 ` Wolfgang Denk
@ 2006-03-18 11:19   ` Mehul Gohel
  2006-03-18  9:26     ` Wolfgang Denk
  0 siblings, 1 reply; 7+ messages in thread
From: Mehul Gohel @ 2006-03-18 11:19 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk wrote:

>In message <E1FKDWn-00029C-Df@mail.sourceforge.net> you wrote:
>  
>
>>    I am fresh engineer in this field working with DM6446 EVM DAVINCI board
>>which contains DSP as well ARMEJ9. I need to bring that board up. I don't
>>have any experience of how to load the boot loader, how the things goes
>>after boot loader get loaded, so and so. I am working by reading all the
>>document in u-boot source tree and going through the code of u-boot-1.1.3.
>>    
>>
>
>Why are you starting with OLD code? Please use the top of  tree  from
>the git repository instead!
>
>  
>
>>am confused that how to write the image in NAND FLASH, thats why I am using
>>the other option and that is to download the boot image from UART where one
>>host utility will be runing on the host PC that does few handshaking with
>>board's primary boot loader and than downloads secondry boot loader from the
>>host PC.
>>    
>>
>
>You should really start reading the FAQ.
>
>  
>
>>Content-Type: text/html;
>>	charset="us-ascii"
>>Content-Transfer-Encoding: quoted-printable
>>    
>>
>
>And NEVER post HTML!
>
>Best regards,
>
>Wolfgang Denk
>
>  
>
well sorry for posting mail in HTML, I've started compiling uboot and at 
the first instant I am getting error something like

[root at localhost u-boot-1.1.3]# make davinci_config
Configuring for davinci board...
[root at localhost u-boot-1.1.3]# make all
make[1]: Entering directory `/home/mehulgohel/u-boot-1.1.3/tools'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/mehulgohel/u-boot-1.1.3/tools'
make[1]: Entering directory `/home/mehulgohel/u-boot-1.1.3/examples'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/mehulgohel/u-boot-1.1.3/examples'
make[1]: Entering directory `/home/mehulgohel/u-boot-1.1.3/post'
make[1]: `.depend' is up to date.
make[1]: Leaving directory `/home/mehulgohel/u-boot-1.1.3/post'
make[1]: Entering directory `/home/mehulgohel/u-boot-1.1.3/post/cpu'
make[1]: *** No rule to make target `asm.S', needed by `.depend'.  Stop.
make[1]: Leaving directory `/home/mehulgohel/u-boot-1.1.3/post/cpu'
make: *** [depend] Error 2
[root at localhost u-boot-1.1.3]#

Did I went wrong any where, I've not touched anything else not any 
configuration parameter or anything,.

Regards,
    Mehul Gohel  .
-------------- next part --------------
A non-text attachment was scrubbed...
Name: mehul.gohel.vcf
Type: text/x-vcard
Size: 152 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20060318/89150ddf/attachment.vcf 

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

* [U-Boot-Users] Detailed  documents......
@ 2006-03-29 23:45 Truong, Loc
  2006-03-30  0:30 ` Wolfgang Denk
  0 siblings, 1 reply; 7+ messages in thread
From: Truong, Loc @ 2006-03-29 23:45 UTC (permalink / raw)
  To: u-boot

Hi Mehul,

The u-boot for DaVinci EVM has not been uploaded to open source yet.
Please contact Jignesh Shah for the app note and necessary files on how
to do this.

Regards,

Loc

 

________________________________

From: u-boot-users-admin@lists.sourceforge.net
[mailto:u-boot-users-admin at lists.sourceforge.net] On Behalf Of Mehul
Gohel
Sent: Friday, March 17, 2006 5:57 AM
To: u-boot-users at lists.sourceforge.net
Subject: [U-Boot-Users] Detailed documents......

 

Hi All,

    I am fresh engineer in this field working with DM6446 EVM DAVINCI
board which contains DSP as well ARMEJ9. I need to bring that board up.
I don't have any experience of how to load the boot loader, how the
things goes after boot loader get loaded, so and so. I am working by
reading all the document in u-boot source tree and going through the
code of u-boot-1.1.3. So can anybody help me to provide document kind of
material that gives step wise DETAIL of all the steps starting from boot
loader installation to running kernel. such that it helps me to make my
task ease. I am going to download the boot loader file through UART to
internal RAM of ARM. Because I am confused that how to write the image
in NAND FLASH, thats why I am using the other option and that is to
download the boot image from UART where one host utility will be runing
on the host PC that does few handshaking with board's primary boot
loader and than downloads secondry boot loader from the host PC.

 

Thanks,

Mehul Gohel

 

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20060329/949f3f8e/attachment.htm 

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

* [U-Boot-Users] Detailed documents......
  2006-03-29 23:45 Truong, Loc
@ 2006-03-30  0:30 ` Wolfgang Denk
  0 siblings, 0 replies; 7+ messages in thread
From: Wolfgang Denk @ 2006-03-30  0:30 UTC (permalink / raw)
  To: u-boot

In message <7535ADB03350D74E878D39FB464AA42A05083778@dlee04.ent.ti.com> you wrote:
>
> The u-boot for DaVinci EVM has not been uploaded to open source yet.
> Please contact Jignesh Shah for the app note and necessary files on how
> to do this.

Will you please explain what this means? You distribute the code, but
not the sources?

Please read the GPL.

Please put this straight.

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
A modem is a baudy house.

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

* [U-Boot-Users] Detailed documents......
@ 2006-03-30 14:55 Truong, Loc
  0 siblings, 0 replies; 7+ messages in thread
From: Truong, Loc @ 2006-03-30 14:55 UTC (permalink / raw)
  To: u-boot

Sorry my statement was incorrect. I meant "submitted back to the Denx"
as we did with the omap 5912OSK, etc. This is to address the specific
needs from Mehul in his email. 
This product is still under development so the port is not finalized. As
with our other products we always include the u-boot source of the port
with the distribution.
Regards,
Loc

-----Original Message-----
From: wd@denx.de [mailto:wd at denx.de] 
Sent: Wednesday, March 29, 2006 6:30 PM
To: Truong, Loc
Cc: Mehul Gohel; u-boot-users at lists.sourceforge.net
Subject: Re: [U-Boot-Users] Detailed documents...... 

In message <7535ADB03350D74E878D39FB464AA42A05083778@dlee04.ent.ti.com>
you wrote:
>
> The u-boot for DaVinci EVM has not been uploaded to open source yet.
> Please contact Jignesh Shah for the app note and necessary files on
how
> to do this.

Will you please explain what this means? You distribute the code, but
not the sources?

Please read the GPL.

Please put this straight.

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
A modem is a baudy house.

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

end of thread, other threads:[~2006-03-30 14:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-17 11:57 [U-Boot-Users] Detailed documents Mehul Gohel
2006-03-17 21:06 ` Wolfgang Denk
2006-03-18 11:19   ` Mehul Gohel
2006-03-18  9:26     ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2006-03-29 23:45 Truong, Loc
2006-03-30  0:30 ` Wolfgang Denk
2006-03-30 14:55 Truong, Loc

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