public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* about serial console problem
@ 2001-07-23  6:52 Barry Wu
  2001-07-24 20:10 ` Eric W. Biederman
  0 siblings, 1 reply; 5+ messages in thread
From: Barry Wu @ 2001-07-23  6:52 UTC (permalink / raw)
  To: linux-kernel

Hi, all,

I am porting linux 2.4.3 to our mipsel evaluation
board. Now I meet a problem. Because I use edown
to download the linux kernel to evaluation board.
I update the serial baud rate to 115200.
I use serial 0 as our console, and I can use
printk to print debug messages on serial port.
But after kernel call /sbin/init, I can not
see "INIT ...  ..." messages on serial port.
I suppose perhaps I make some mistakes. But when
I use 2.2.12 kernel, it ok.
If someone knows, please help me. Thanks!

Barry

__________________________________________________
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

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

* Re: about serial console problem
  2001-07-23  6:52 about serial console problem Barry Wu
@ 2001-07-24 20:10 ` Eric W. Biederman
  2001-07-24 22:29   ` Robert J.Dunlop
  0 siblings, 1 reply; 5+ messages in thread
From: Eric W. Biederman @ 2001-07-24 20:10 UTC (permalink / raw)
  To: Barry Wu; +Cc: linux-kernel

Barry Wu <wqb123@yahoo.com> writes:

> Hi, all,
> 
> I am porting linux 2.4.3 to our mipsel evaluation
> board. Now I meet a problem. Because I use edown
> to download the linux kernel to evaluation board.
> I update the serial baud rate to 115200.
> I use serial 0 as our console, and I can use
> printk to print debug messages on serial port.
> But after kernel call /sbin/init, I can not
> see "INIT ...  ..." messages on serial port.
> I suppose perhaps I make some mistakes. But when
> I use 2.2.12 kernel, it ok.
> If someone knows, please help me. Thanks!

It's a bug in init.  INIT clears the CREAD flag which means all reads
to the console will be dropped.  Why it /sbin/init works before 2.4.3
is a mystery.

Eric


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

* Re: about serial console problem
  2001-07-24 20:10 ` Eric W. Biederman
@ 2001-07-24 22:29   ` Robert J.Dunlop
  2001-07-25  8:52     ` Eric W. Biederman
  0 siblings, 1 reply; 5+ messages in thread
From: Robert J.Dunlop @ 2001-07-24 22:29 UTC (permalink / raw)
  To: Eric W. Biederman; +Cc: Barry Wu, linux-kernel

Hi,

On Tue, Jul 24,  Eric W. Biederman wrote:
> Barry Wu <wqb123@yahoo.com> writes:
> 
> > I am porting linux 2.4.3 to our mipsel evaluation
> > board. Now I meet a problem. Because I use edown
> > to download the linux kernel to evaluation board.
> > I update the serial baud rate to 115200.
> > I use serial 0 as our console, and I can use
> > printk to print debug messages on serial port.
> > But after kernel call /sbin/init, I can not
> > see "INIT ...  ..." messages on serial port.
> > I suppose perhaps I make some mistakes. But when
> > I use 2.2.12 kernel, it ok.
> > If someone knows, please help me. Thanks!
> 
> It's a bug in init.  INIT clears the CREAD flag which means all reads
> to the console will be dropped.  Why it /sbin/init works before 2.4.3
> is a mystery.

Perhaps because most of the serial drivers didn't implement CREAD (or
rather !CREAD) until then. Actually more and more have been implementing
it as we go through 2.4.x, depends when your particular driver got caught.

-- 
        Bob Dunlop                      FarSite Communications
        rjd@xyzzy.clara.co.uk           bob.dunlop@farsite.co.uk
        www.xyzzy.clara.co.uk           www.farsite.co.uk

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

* Re: about serial console problem
  2001-07-24 22:29   ` Robert J.Dunlop
@ 2001-07-25  8:52     ` Eric W. Biederman
  2001-07-25 11:12       ` Robert J.Dunlop
  0 siblings, 1 reply; 5+ messages in thread
From: Eric W. Biederman @ 2001-07-25  8:52 UTC (permalink / raw)
  To: Robert J.Dunlop; +Cc: Barry Wu, linux-kernel

"Robert J.Dunlop" <rjd@xyzzy.clara.co.uk> writes:

> Hi,
> 
> On Tue, Jul 24,  Eric W. Biederman wrote:
> > Barry Wu <wqb123@yahoo.com> writes:
> > 
> > > I am porting linux 2.4.3 to our mipsel evaluation
> > > board. Now I meet a problem. Because I use edown
> > > to download the linux kernel to evaluation board.
> > > I update the serial baud rate to 115200.
> > > I use serial 0 as our console, and I can use
> > > printk to print debug messages on serial port.
> > > But after kernel call /sbin/init, I can not
> > > see "INIT ...  ..." messages on serial port.
> > > I suppose perhaps I make some mistakes. But when
> > > I use 2.2.12 kernel, it ok.
> > > If someone knows, please help me. Thanks!
> > 
> > It's a bug in init.  INIT clears the CREAD flag which means all reads
> > to the console will be dropped.  Why it /sbin/init works before 2.4.3
> > is a mystery.
> 
> Perhaps because most of the serial drivers didn't implement CREAD (or
> rather !CREAD) until then. 

Hmm.  When I looked it appeared CREAD should have worked in 2.4.2 but I do
know /sbin/init didn't have a problem with that one.  

> Actually more and more have been implementing
> it as we go through 2.4.x, depends when your particular driver got caught.

Do you know the history on how/why ~CREAD support started showing in
in the linux kernels.  I'd like to understand what is going on.

Eric


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

* Re: about serial console problem
  2001-07-25  8:52     ` Eric W. Biederman
@ 2001-07-25 11:12       ` Robert J.Dunlop
  0 siblings, 0 replies; 5+ messages in thread
From: Robert J.Dunlop @ 2001-07-25 11:12 UTC (permalink / raw)
  To: Eric W. Biederman; +Cc: Barry Wu, linux-kernel

On Wed, Jul 25,  Eric W. Biederman wrote:
> "Robert J.Dunlop" <rjd@xyzzy.clara.co.uk> writes:
> > Actually more and more have been implementing
> > it as we go through 2.4.x, depends when your particular driver got caught.
> 
> Do you know the history on how/why ~CREAD support started showing in
> in the linux kernels.  I'd like to understand what is going on.

Sorry! I've red herringed you here. Most drivers were fixed way back in
2.2.x or before. From the Changelog we have:

  Fri Nov  8 20:19:50 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
    * serial.c (change_speed): Add support for CREAD, as required by POSIX

I just happed to notice the late change on a couple of third party drivers
and jumped to the wrong conclusion.

-- 
        Bob Dunlop                      FarSite Communications
        rjd@xyzzy.clara.co.uk           bob.dunlop@farsite.co.uk
        www.xyzzy.clara.co.uk           www.farsite.co.uk

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

end of thread, other threads:[~2001-07-25 11:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-23  6:52 about serial console problem Barry Wu
2001-07-24 20:10 ` Eric W. Biederman
2001-07-24 22:29   ` Robert J.Dunlop
2001-07-25  8:52     ` Eric W. Biederman
2001-07-25 11:12       ` Robert J.Dunlop

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