linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* Linux porting to IBM405 based board
@ 2003-06-19  3:57 Rakesh jagota
  2003-06-19 13:30 ` Mark Hatle
  0 siblings, 1 reply; 3+ messages in thread
From: Rakesh jagota @ 2003-06-19  3:57 UTC (permalink / raw)
  To: Linuxppc-Embedded


Hi all,
I am able to port linux in IBM based power pc 405. I have few issues. I am
not able to kill the process using "ctrl-c". I am not able to use "backspace"
key to delete the character. Can anyone help me out sort out these silly
issues.


Thanks & Regards,

Rakesh


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

* Re: Linux porting to IBM405 based board
  2003-06-19  3:57 Linux porting to IBM405 based board Rakesh jagota
@ 2003-06-19 13:30 ` Mark Hatle
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Hatle @ 2003-06-19 13:30 UTC (permalink / raw)
  To: j.rakesh; +Cc: Linuxppc-Embedded


Rakesh jagota wrote:
> Hi all,
> I am able to port linux in IBM based power pc 405. I have few issues. I am
> not able to kill the process using "ctrl-c". I am not able to use "backspace"
> key to delete the character. Can anyone help me out sort out these silly
> issues.

This problem comes up often.

You can NOT use /dev/console as your interactive login device without
first calling the ioctl to make it a "controlling tty".  (Sorry I don't
have which ioctl handy.)

The correct thing to do is use the serial port, or virtual TTY as your
console device.. i.e.:

/bin/sh < /dev/console > /dev/console   is _WRONG_.  It works for
testing, but you don't have a controlling terminal.

You need to do something like:

/bin/sh < /dev/ttyS0 > /dev/ttyS0

(and if you want to see error messages, redirect that as well)  :)

--Mark


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

* RE: Linux porting to IBM405 based board
@ 2003-06-19 15:46 Kerl, John
  0 siblings, 0 replies; 3+ messages in thread
From: Kerl, John @ 2003-06-19 15:46 UTC (permalink / raw)
  To: 'j.rakesh@gdatech.co.in', Linuxppc-Embedded


For control-C, you might check your terminal emulation
program.  Window$-based ones typically consume ^C for
the Copy function.  Does control-\ work?

For backspace, does the delete key work instead?  If so,
you might check out the manpage for stty.

-----Original Message-----
From: Rakesh jagota [mailto:j.rakesh@gdatech.co.in]
Sent: Wednesday, June 18, 2003 8:58 PM
To: Linuxppc-Embedded
Subject: Linux porting to IBM405 based board



Hi all,
I am able to port linux in IBM based power pc 405. I have few issues. I am
not able to kill the process using "ctrl-c". I am not able to use
"backspace"
key to delete the character. Can anyone help me out sort out these silly
issues.


Thanks & Regards,

Rakesh


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

end of thread, other threads:[~2003-06-19 15:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-19  3:57 Linux porting to IBM405 based board Rakesh jagota
2003-06-19 13:30 ` Mark Hatle
  -- strict thread matches above, loose matches on Subject: below --
2003-06-19 15:46 Kerl, John

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).