All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] U boot modification...
@ 2005-09-12  6:44 Kiran Jammula
  2005-09-12  8:51 ` pradeep sawlani
  2005-09-12  8:53 ` [U-Boot-Users] " Wolfgang Denk
  0 siblings, 2 replies; 6+ messages in thread
From: Kiran Jammula @ 2005-09-12  6:44 UTC (permalink / raw)
  To: u-boot

Hi,

I am using U boot for my project.
I need to configure the console while booting by prompting the user from 
target board LCD and Keypad. So please let me know which file of the U-boot 
I have to modify to achieve this.

Kiran

_________________________________________________________________
Special offer for NRIs! 
http://creative.mediaturf.net/creatives/citibankrca/rca_msntagofline.htm Get 
a zero balance account for next 20 years. From Citibank

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

* [U-Boot-Users] U boot modification...
  2005-09-12  6:44 [U-Boot-Users] U boot modification Kiran Jammula
@ 2005-09-12  8:51 ` pradeep sawlani
  2005-09-12  9:24   ` Wolfgang Denk
  2012-05-23  6:50   ` [U-Boot] " santosh vastrad
  2005-09-12  8:53 ` [U-Boot-Users] " Wolfgang Denk
  1 sibling, 2 replies; 6+ messages in thread
From: pradeep sawlani @ 2005-09-12  8:51 UTC (permalink / raw)
  To: u-boot

For configuring LCD you need to create lcd.c file in ur board directory and 
define functions like lcd_init...etc.look at any lcd.c file for example 
board/cogent/lcd.c.
Regards,
Pradeep

On 9/12/05, Kiran Jammula <kiranjammula@hotmail.com> wrote:
> 
> Hi,
> 
> I am using U boot for my project.
> I need to configure the console while booting by prompting the user from
> target board LCD and Keypad. So please let me know which file of the 
> U-boot
> I have to modify to achieve this.
> 
> Kiran
> 
> _________________________________________________________________
> Special offer for NRIs!
> http://creative.mediaturf.net/creatives/citibankrca/rca_msntagofline.htmGet
> a zero balance account for next 20 years. From Citibank
> 
> 
> 
> -------------------------------------------------------
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle 
> Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20050912/a5c2c1e8/attachment.htm 

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

* [U-Boot-Users] U boot modification...
  2005-09-12  6:44 [U-Boot-Users] U boot modification Kiran Jammula
  2005-09-12  8:51 ` pradeep sawlani
@ 2005-09-12  8:53 ` Wolfgang Denk
  2012-05-23  6:42   ` [U-Boot] " santosh vastrad
  1 sibling, 1 reply; 6+ messages in thread
From: Wolfgang Denk @ 2005-09-12  8:53 UTC (permalink / raw)
  To: u-boot

In message <BAY23-F174B29F70A29DC659D1DDAC39D0@phx.gbl> you wrote:
> 
> I am using U boot for my project.
> I need to configure the console while booting by prompting the user from 
> target board LCD and Keypad. So please let me know which file of the U-boot 
> I have to modify to achieve this.

To support your custom keypad you have to extend  U-Boot  to  support
this keypad. This is the place where you add these modifications.

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 penny saved is a penny to squander.
- Ambrose Bierce

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

* [U-Boot-Users] U boot modification...
  2005-09-12  8:51 ` pradeep sawlani
@ 2005-09-12  9:24   ` Wolfgang Denk
  2012-05-23  6:50   ` [U-Boot] " santosh vastrad
  1 sibling, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2005-09-12  9:24 UTC (permalink / raw)
  To: u-boot

In message <5a19730105091201513e91e751@mail.gmail.com> you wrote:
> 
> For configuring LCD you need to create lcd.c file in ur board directory and
> define functions like lcd_init...etc.look at any lcd.c file for example 
> board/cogent/lcd.c.

This is extremely bad advice. I *STRONGLY* recomend to ignore it.

LCD support is usually *NOT* board dependent, but rather  a  question
of which graphics controller gets used. For SoC type processors which
have  the  graphics  controller  on  chip you fild LCD support in the
corresponding  cpu/???/  directories,  and  for   external   graphics
controlers in drivers/


> Content-Type: text/html; charset=ISO-8859-1
> Content-Transfer-Encoding: quoted-printable
> Content-Disposition: inline

And will you stop posting HTML, please? You have been warned before.

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
America has been discovered before, but it has always been hushed up.
- Oscar Wilde

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

* [U-Boot] U boot modification...
  2005-09-12  8:53 ` [U-Boot-Users] " Wolfgang Denk
@ 2012-05-23  6:42   ` santosh vastrad
  0 siblings, 0 replies; 6+ messages in thread
From: santosh vastrad @ 2012-05-23  6:42 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk <wd <at> denx.de> writes:

> 
> In message <BAY23-F174B29F70A29DC659D1DDAC39D0 <at> phx.gbl> you wrote:
> > 
> > I am using U boot for my project.
> > I need to configure the console while booting by prompting the user from 
> > target board LCD and Keypad. So please let me know which file of the U-boot 
> > I have to modify to achieve this.
> 
> To support your custom keypad you have to extend  U-Boot  to  support
> this keypad. This is the place where you add these modifications.
> 
> Best regards,
> 
> Wolfgang Denk
> 



Hi Wolfgang Denk,

Have got solution for your issue?

Let me guide , i'm working on displaying a logo in u-boot code!

Regards,

santosh vastrad

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

* [U-Boot] U boot modification...
  2005-09-12  8:51 ` pradeep sawlani
  2005-09-12  9:24   ` Wolfgang Denk
@ 2012-05-23  6:50   ` santosh vastrad
  1 sibling, 0 replies; 6+ messages in thread
From: santosh vastrad @ 2012-05-23  6:50 UTC (permalink / raw)
  To: u-boot

pradeep sawlani <pradep <at> gmail.com> writes:

> 
> 
> For configuring LCD you need to create lcd.c file in ur board directory
> and define functions like lcd_init...etc.look at any lcd.c file for
> example board/cogent/lcd.c.
> Regards,
> Pradeep
> 
> On 9/12/05, Kiran Jammula <kiranjammula <at> hotmail.com> wrote:
> Hi,I am using U boot for my project.I need to configure the console while
booting by prompting the user fromtarget board LCD and Keypad. So please let me
know which file of the U-bootI have to modify to achieve this.
> Kiran_________________________________________________________________Special
offer for
NRIs!http://creative.mediaturf.net/creatives/citibankrca/rca_msntagofline.htm
>  Geta zero balance account for next 20 years. From
Citibank-------------------------------------------------------SF.Net email is
Sponsored by the Better Software Conference & EXPOSeptember 19-22, 2005 * San
Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing &
QASecurity * Process Improvement & Measurement *
http://www.sqe.com/bsce5sf_______________________________________________
> U-Boot-Users mailing listU-Boot-Users <at>
lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/u-boot-users
> 
> 
> 
> 
> 

Hi Kiran,

Have you done lcd in u-boot ?

Can you guide me please?

Regards, 
santosh vastrad

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

end of thread, other threads:[~2012-05-23  6:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-09-12  6:44 [U-Boot-Users] U boot modification Kiran Jammula
2005-09-12  8:51 ` pradeep sawlani
2005-09-12  9:24   ` Wolfgang Denk
2012-05-23  6:50   ` [U-Boot] " santosh vastrad
2005-09-12  8:53 ` [U-Boot-Users] " Wolfgang Denk
2012-05-23  6:42   ` [U-Boot] " santosh vastrad

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.