All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: Serial Console
@ 2000-12-05 15:20 Jon Burgess
  2000-12-05 16:03 ` Chad Schwartz
  0 siblings, 1 reply; 64+ messages in thread
From: Jon Burgess @ 2000-12-05 15:20 UTC (permalink / raw)
  To: Steve Hill; +Cc: PaulJakma, linux-kernel



>>
>> /dev/console will go to serial, but afaik it doesn't block for lack of
>> a terminal. (has something to do with /dev/console being semantically
>> different to /dev/tty..., eg it doesn't block, not sure of the exact
>> details).

>Nope, /dev/console *does* block.  ATM I've found a quick workaround - I
>use "stty -F /dev/console clocal -crtscts" to turn off the serial flow
>control at the stawrt of /etc/rc.d/rc.sysinit - this seems to work quite
>well... of course it doesn't stop some program turning flow control back
>on and ballsing it all up again :)

I've got a machine here which redirects the console to the serial port using
Lilo 'append="console=ttyS0"' and it boots fine without a connection to the
serial port without having to do any specific manipulation of the flow control.
I think that all serial output is dumped to /dev/null if DCD is not asserted no
matter what the flow control says. Perhaps there are some hardware differences
in the configuration of the control signal pull-up/downs.

     Jon Burgess




PLANET PROJECT will connect millions of people worldwide through the combined
technology of 3Com and the Internet. Find out more and register now at
http://www.planetproject.com


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 64+ messages in thread
* serial console
@ 2009-12-30 15:52 Riccardo Veraldi
  2009-12-30 16:28 ` Avi Kivity
  0 siblings, 1 reply; 64+ messages in thread
From: Riccardo Veraldi @ 2009-12-30 15:52 UTC (permalink / raw)
  To: kvm


hello,
how is possible ins ome way to have access to serial console using libvirt ?

until now I used quemu-kvm started inside a screen process.

but now I am managing my kvm machines with libvirt and in this way I 
have no access to a serial console.
IS there some way to do it ?

thanks

Rick


^ permalink raw reply	[flat|nested] 64+ messages in thread
* serial console
@ 2009-07-08  9:53 sylarrrrrrr
  2009-07-08 19:13 ` Pavel Roskin
  0 siblings, 1 reply; 64+ messages in thread
From: sylarrrrrrr @ 2009-07-08  9:53 UTC (permalink / raw)
  To: grub-devel

[-- Attachment #1: Type: text/plain, Size: 494 bytes --]

Hi



I have two computers which I would like to connect to each other with a serial cable and have a serial console thus. I would like to know (before I search and buy and install all the serial brackets for motherboard headers, and cable) if I would be able to use the serial console in parallel to the normal VGA screen. (that is that I will able to see and? interact with the computer both from the serial console(via the second computer), and from the normal VGA via mouse and keyboard)



[-- Attachment #2: Type: text/html, Size: 925 bytes --]

^ permalink raw reply	[flat|nested] 64+ messages in thread
* serial console
@ 2006-05-21 16:00 Raymond Burns
  2006-05-22  2:57 ` David S. Miller
  2006-05-22  6:09 ` Raymond Burns
  0 siblings, 2 replies; 64+ messages in thread
From: Raymond Burns @ 2006-05-21 16:00 UTC (permalink / raw)
  To: sparclinux

[-- Attachment #1: Type: TEXT/PLAIN, Size: 501 bytes --]

Hi

It's tough to debug a headless box :)

I believe the call to register_console() is the significant code.
Where it should go I have no idea.

I did not cleanup the patch in case something else mattered. 

I've had a sparc booted to linux for all of one week so I know the
code is not "right" but it works. Therefore it may save some one some
time in making the "right" patch.

Now to track down the "BUG_ON(sparc_cpu_model != sun4m)"  's and find
some code that will work for a sun4d

Thanx
  Ray


[-- Attachment #2: context diff serial console --]
[-- Type: TEXT/PLAIN, Size: 1838 bytes --]

*** arch/sparc/kernel/setup.c	Thu May 11 23:31:53 2006
--- /sparc.d2/linux-2.6.16.15/arch/sparc/kernel/setup.c	Fri May 19 08:57:28 2006
***************
*** 158,163 ****
--- 158,170 ----
  	}
  }
  
+ static struct console boot_serial_console = {
+ 	.name =		"ttyS0",
+ 	.write =	prom_console_write,
+ 	.flags =	CON_ENABLED,
+ 	.index =	-1,
+ };
+ 
  static void __init process_console(char *commands)
  {
  	serial_console = 0;
***************
*** 170,175 ****
--- 177,185 ----
  		/* Solaris-style serial */
  		if (c == 'a' || c == 'b')
  			serial_console = c - 'a' + 1;
+ 		register_console(&boot_serial_console);
+ 		add_preferred_console("ttyS",serial_console - 1,NULL);
+ 		prom_printf ("Using /dev/tty%c as console.\n",'a' -1 + serial_console);
  		/* else Linux-style fbcon, not serial */
  	}
  #if defined(CONFIG_PROM_CONSOLE)
***************
*** 302,309 ****
--- 313,322 ----
  	};
  
  #ifdef CONFIG_DUMMY_CONSOLE
+ if (serial_console==0) 
  	conswitchp = &dummy_con;
  #elif defined(CONFIG_PROM_CONSOLE)
+ if (serial_console==0) 
  	conswitchp = &prom_con;
  #endif
  	boot_flags_init(*cmdline_p);
***************
*** 356,363 ****
  	int idev, odev;
  
  	/* The user has requested a console so this is already set up. */
! 	if (serial_console >= 0)
! 		return -EBUSY;
  
  	idev = prom_query_input_device();
  	odev = prom_query_output_device();
--- 369,380 ----
  	int idev, odev;
  
  	/* The user has requested a console so this is already set up. */
! 	if (serial_console >= 0) {
! 		prom_printf("keeping console %d\n",serial_console);
! 		/* everything that is except */
! 		return add_preferred_console("ttyS", serial_console - 1, NULL);
! /*		return -EBUSY;*/
!         }
  
  	idev = prom_query_input_device();
  	odev = prom_query_output_device();

^ permalink raw reply	[flat|nested] 64+ messages in thread
* Re: serial console
@ 2005-10-05  2:36 KokHow Teh
  2005-10-05 12:23 ` Vitaly Bordug
  0 siblings, 1 reply; 64+ messages in thread
From: KokHow Teh @ 2005-10-05  2:36 UTC (permalink / raw)
  To: Vitaly Bordug, david.jander, linuxppc-embedded list


Hi;
      I have tried with 4 types of command lines with my linux kernel with
devfs and serial device compiled in and none gives me the desired results:

(1)   console=tts/0,115200n8 OR console=ttyCPM0,115200n8

      no serial console output at all during boot time but it gives me
login prompt at the end.

(2)   without "console=" OR console=ttyS0,115200n8

      serial console output fine during bootup but only until the point
when it prints out "Freeing unused kernel memory: 232k init 4k prep". After
that, the serial console output is garbled. No login prompt.

      So this has not solved my problem. I need more advice. Here are some
more questions and observations:

(1)   David Jander's comment:

I don't know exactly what I am talking about right now, but the string
"tts/0"
in the console-line sounds suspicious to me. AFAIK when using devfs still
device names on the kernel-commandline have to be old-style.
Just a guess: try using "console=ttyS0,115200n8" and see if this helps.

      Is it confirmed that kernel-commandline has to be old-style even
though the kernel is using devfs?

(2)   Vitaly Bordug's suggestion of using "console=ttyCPM0". May I know
where is ttyCPM0 defined and how is it bound to the serial console device
driver in the source?

      Thanks for any input and pointer.

Regards,
TEH

^ permalink raw reply	[flat|nested] 64+ messages in thread
* Re: serial console
@ 2005-10-05  2:32 KokHow Teh
  0 siblings, 0 replies; 64+ messages in thread
From: KokHow Teh @ 2005-10-05  2:32 UTC (permalink / raw)
  To: Vitaly Bordug, david.jander; +Cc: linuxppc-embedded list


Hi;
      I have tried with 4 types of command lines with my linux kernel with
devfs and serial device compiled in and none gives me the desired results:

(1)   console=tts/0,115200n8 OR console=ttyCPM0,115200n8

      no serial console output at all during boot time but it gives me
login prompt at the end.

(2)   without "console=" OR console=ttyS0,115200n8

      serial console output fine during bootup but only until the point
when it prints out "Freeing unused kernel memory: 232k init 4k prep". After
that, the serial console output is garbled.

      So this has not solved my problem. I need more advice. Here are some
more questions and observations:

(1)   David Jander's comment:

I don't know exactly what I am talking about right now, but the string
"tts/0"
in the console-line sounds suspicious to me. AFAIK when using devfs still
device names on the kernel-commandline have to be old-style.
Just a guess: try using "console=ttyS0,115200n8" and see if this helps.

      Is it confirmed that kernel-commandline has to be old-style even
though the kernel is using devfs?

(2)   Vitaly Bordug's suggestion of using "console=ttyCPM0". May I know
where is ttyCPM0 defined and how is it bound to the serial console device
driver in the source?

      Thanks for any input and pointer.

Regards,
TEH



Vitaly Bordug <vbordug@ru.mvista.com> on 10/04/2005 11:16:10 PM

To:    KokHow.Teh@marconi.com
cc:    linuxppc-embedded list <linuxppc-embedded@ozlabs.org>

Subject:    Re: serial console



> On Tuesday 04 October 2005 08:54, KokHow Teh wrote:
>
>>Hi;
>>      I have debian linux running on my PQ2FADS-ZU with devfs and serial
>>driver compiled in. I have read Documentation/serial-console.txt and I
have
>>tried both passing "console=" option as well as without passing that to
the
>>kernel and both don't give me the expected results.
>>      When I pass "console=tts/0,115200n8" to the kernel, I don't get any
>>console output until the login prompt which I set to 115200 in
>>/etc/inittab. When I don't pass "console=" option to the kernel, I get
>>console output all the way until "Freeing unused kernel memory:" and the
>>console output is garbled and I don't see any login prompt. Here is the
>>/dev/* content:
>
>
> I don't know exactly what I am talking about right now, but the string
"tts/0"
> in the console-line sounds suspicious to me. AFAIK when using devfs still
> device names on the kernel-commandline have to be old-style.
> Just a guess: try using "console=ttyS0,115200n8" and see if this helps.
>
Yes, but PQ2FADS use cpm_uart and hence the commandline should be
console=ttyCPM0,115200

> Greetings,
>


--
Sincerely,
Vitaly

^ permalink raw reply	[flat|nested] 64+ messages in thread
* serial console
@ 2005-10-04  6:54 KokHow Teh
  2005-10-04 15:11 ` David Jander
  0 siblings, 1 reply; 64+ messages in thread
From: KokHow Teh @ 2005-10-04  6:54 UTC (permalink / raw)
  To: linuxppc-embedded

Hi;
      I have debian linux running on my PQ2FADS-ZU with devfs and seria=
l
driver compiled in. I have read Documentation/serial-console.txt and I =
have
tried both passing "console=3D" option as well as without passing that =
to the
kernel and both don't give me the expected results.
      When I pass "console=3Dtts/0,115200n8" to the kernel, I don't get=
 any
console output until the login prompt which I set to 115200 in
/etc/inittab. When I don't pass "console=3D" option to the kernel, I ge=
t
console output all the way until "Freeing unused kernel memory:" and th=
e
console output is garbled and I don't see any login prompt. Here is the=

/dev/* content:


(none) login:
Debian GNU/Linux 3.1 (none) tts/0
Password:
Last login: Thu Jan  1 02:29:06 1970 on tts/0

The programs included with the Debian GNU/Linux system are free softwar=
e;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
(none):~# l /dev
total 0
crw-------  1 root root 8, 0 Jan  1 02:00 .devfsd
lr-xr-xr-x  1 root root   13 Jan  1 02:37 MAKEDEV -> /sbin/MAKEDEV
crw-------  1 root root 5, 1 Jan  1 02:00 console
drwxr-xr-x  1 root root    0 Jan  1 02:00 discs
crw-rw-rw-  1 root root 1, 7 Jan  1 02:00 full
drwxr-xr-x  1 root root    0 Jan  1 02:00 ide
prw-------  1 root root    0 Jan  1 02:37 initctl
crw-r-----  1 root root 1, 2 Jan  1 02:00 kmem
srw-rw-rw-  1 root root    0 Jan  1 02:37 log
crw-r-----  1 root root 1, 1 Jan  1 02:00 mem
drwxr-xr-x  1 root root    0 Jan  1 02:00 misc
drwxr-xr-x  1 root root    0 Jan  1 02:00 mtd
drwxr-xr-x  1 root root    0 Jan  1 02:00 mtdblock
crw-rw-rw-  1 root root 1, 3 Jan  1 02:00 null
crw-r-----  1 root root 1, 4 Jan  1 02:00 port
crw-rw-rw-  1 root root 5, 2 Jan  1 02:00 ptmx
drwxr-xr-x  1 root root    0 Jan  1 02:00 pts
drwxr-xr-x  1 root root    0 Jan  1 02:00 pty
crw-r--r--  1 root root 1, 8 Jan  1 02:00 random
drwxr-xr-x  1 root root    0 Jan  1 02:00 rd
lr-xr-xr-x  1 root root   33 Jan  1 02:37 root -> ide/host0/bus0/target=
0/lun0/part2
drwxrwxrwt  3 root root   60 Jan  1 02:37 shm
drwxr-xr-x  1 root root    0 Jan  1 02:00 soc
drwxr-xr-x  1 root root    0 Jan  1 02:00 tts
crw-rw-rw-  1 root root 5, 0 Jan  1 02:00 tty
crw-r--r--  1 root root 1, 9 Jan  1 02:37 urandom
prw-r-----  1 root adm     0 Jan  1 02:37 xconsole
crw-rw-rw-  1 root root 1, 5 Jan  1 02:00 zero
(none):~#

      This is what I end up without "console=3D" option passed to the k=
ernel:

<snip>
Mounted devfs on /dev
Freeing unused kernel memory: 232k init 4k prep
..=EF=BF=BD=EF=BF=BD=EF=BF=BD.=EF=BF=BD...=EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=
=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD.=EF=BF=BD=EF=BF=BD.=EF=BF=BD=
...=EF=BF=BD...=EF=BF=BD=EF=BF=BD=EF=BF=BD......=EF=BF=BD..=EF=BF=BD...=
=EF=BF=BD=EF=BF=BD=EF=BF=BD..=EF=BF=BD.=EF=BF=BD.=EF=BF=BD=EF=BF=BD.=EF=
=BF=BD=EF=BF=BD.....=EF=BF=BD=EF=BF=BD[42;124H.
 <no login prompt>

      My question is, how can I get a complete serial console output al=
l
the way from bootup to the login prompt? I am missing something. It is
either the kernel configuration or I have to tweak the codes somewhere.=
 Any
input and insight is appreciated.

Regards,
TEH
=

^ permalink raw reply	[flat|nested] 64+ messages in thread
* Serial console
@ 2005-07-30  1:06 Daniel Ann
  2005-07-30  1:19 ` Josh Boyer
                   ` (2 more replies)
  0 siblings, 3 replies; 64+ messages in thread
From: Daniel Ann @ 2005-07-30  1:06 UTC (permalink / raw)
  To: linuxppc-embedded

Hi folks,

Just wondering if anyone could lend a hand with this problem I have
with serial console. I'm trying to boot up my board (very similar to
sandpoint using MPC8245) with kernel 2.6.12.3, and most of it is
working but console will display up to,
[snip]
RAMDISK: Compressed image found at block 0
VFS: Mounted root (ext2 filesystem) readonly.
Freeing unused kernel memory: 112k init                                    =
   =20

I've done series of printk in sys_execve() to see if /sbin/init is
working, and found out it went thru the whole rcS file okay. Mind you,
printk is successfully displaying the output on the console while I'm
still not getting anything from the user processes.

Having all the kernel boot up log on console means that I've done some
part right. But why am I not getting anything from the user processes
on the console screen ?

Is there anything I need to do on the kernel config ?

--=20
Daniel

^ permalink raw reply	[flat|nested] 64+ messages in thread
[parent not found: <3174569B9743D511922F00A0C943142309F80D9F@TYANWEB>]
* Serial Console
@ 2003-03-04 14:53 Aman
  2003-03-04 15:40 ` Mark Hatle
  0 siblings, 1 reply; 64+ messages in thread
From: Aman @ 2003-03-04 14:53 UTC (permalink / raw)
  To: linuxppc embedded


 Hi

 In the Redhat 7.0 linux, I was able to enable/disable the serial console
 using the following command in the inittab
 " T0:12345:respawn:/sbin/getty ttyS0 9600 vt100"
 However in the case of the 440 Linux the serial console is enabled already.
 I wanted to know how this enabling is done. Can someone add some points to
 this.

 Thanking you in advance
 Regards
 Aman


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

^ permalink raw reply	[flat|nested] 64+ messages in thread
* Serial Console
@ 2003-01-16 21:06 Aman
  0 siblings, 0 replies; 64+ messages in thread
From: Aman @ 2003-01-16 21:06 UTC (permalink / raw)
  To: linuxppc embedded


Hi All

I have an custom board which has PPC 440GP as its processor. I have build a
kernel image and ramdisk to run on the custom board, which is running fine.
Now I want to disable the serial console in my kernel and use the serial
port for some other purpose. If I have to disable the serial console , what
command should be given for it in the kernel.

Thanking you in advance
Regards
Aman


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

^ permalink raw reply	[flat|nested] 64+ messages in thread
[parent not found: <200208191108120240.0D409F0A@192.168.128.16>]
* Re: Serial Console
@ 2000-12-05 18:09 Jon Burgess
  0 siblings, 0 replies; 64+ messages in thread
From: Jon Burgess @ 2000-12-05 18:09 UTC (permalink / raw)
  To: Chad Schwartz; +Cc: Steve Hill, PaulJakma, linux-kernel



Yes it could be a modem on the line, so my comment about DCD is wrong, a comms
program must be able to send AT commands to the modem when DCD is not asserted
before the call is setup. I was being confused by the login getty which we run
on the same serial port. This drops back to the login prompt if it sees DCD
being dropped.

     Jon




PLANET PROJECT will connect millions of people worldwide through the combined
technology of 3Com and the Internet. Find out more and register now at
http://www.planetproject.com


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 64+ messages in thread
* Serial Console
@ 2000-12-05 12:04 Steve Hill
  2000-12-05 12:11 ` Miquel van Smoorenburg
                   ` (2 more replies)
  0 siblings, 3 replies; 64+ messages in thread
From: Steve Hill @ 2000-12-05 12:04 UTC (permalink / raw)
  To: linux-kernel


I'm building boxes with the console set to /dev/ttyS0.  However, I can't
guarantee that there will always be a term plugged into the serial
port.  If there is no term on the port, eventually the buffer fills and
any processes that write to the console (i.e. init) block.  Is there some
option somewhere to stop this happening (i.e. either ignoring the
flow-control or just allowing the buffer to overflow)?

-- 

- Steve Hill
System Administrator         Email: steve@navaho.co.uk
Navaho Technologies Ltd.       Tel: +44-870-7034015


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 64+ messages in thread
* serial console
@ 2000-02-11 17:08 Pat O'Rourke
  2000-02-11 21:04 ` Matthew Jacob
  2000-02-11 21:21 ` Pat O'Rourke
  0 siblings, 2 replies; 64+ messages in thread
From: Pat O'Rourke @ 2000-02-11 17:08 UTC (permalink / raw)
  To: ultralinux

I have an Ultra-1 clone whose console is redirected to the serial port,
Console: ttyS0 (SAB82532), however it is only working intermittently when
linux boots.  By "working" I mean no output is seen, nor is any input
possible.

Messages sent directly to the prom seem okay, i.e. at the'ok' prompt or via
prom_printf() calls.  I tried various incantations of the serial= option to
noavail.  This problem is only when linux is booted, if I shutdown the OS
the console comes back and I can interact with OBP.

It seems that if I power cycle the machine the serial console will work,
but on subsequent reboots it does not.  Has anyone else encountered this?
The behavior is the same whether I am booting a 2.2.x or 2.3.x kernel.

Any suggestions would be greatly appreciated.

Thanks in advance,

Pat

-- 
Patrick O'Rourke
orourke@missioncriticallinux.com

^ permalink raw reply	[flat|nested] 64+ messages in thread
* kernel panic
@ 1998-04-02 17:31 Ulf Carlsson
  1998-04-02 18:55 ` Dong Liu
  0 siblings, 1 reply; 64+ messages in thread
From: Ulf Carlsson @ 1998-04-02 17:31 UTC (permalink / raw)
  To: linux, ralf

Hello again... we're updating the internet connection to my mail server so
I can't read what you've written today. But I've downloaded patch-3 of the
sgi-kernel. I get further, but it still doesn't work.. well, I think it's
almost fixed now. Here's the output:

IP-Config: Got BOOTP answer from 192.168.0.1, my address is 192.168.0.3
Partition check:
 sda: sda1 sda2 sda3 sda4
 sdb: sdb1 sdb2 sdb3
VFS: Mounted root (ext2 filesystem) readonly.
Warning: unable to open an initial console.
Got vced at 8801a2a4.
Kernel panic: Caught VCE exception - should not happen

That's the end of it.. tell me if you need some info above those lines..
Can it be my partition which is screwed? I reinstalled sgi-linux two days ago...

We're atleast getting somewhere! Great work :-)

- Ulf

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

end of thread, other threads:[~2009-12-30 16:29 UTC | newest]

Thread overview: 64+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-12-05 15:20 Serial Console Jon Burgess
2000-12-05 16:03 ` Chad Schwartz
  -- strict thread matches above, loose matches on Subject: below --
2009-12-30 15:52 serial console Riccardo Veraldi
2009-12-30 16:28 ` Avi Kivity
2009-07-08  9:53 sylarrrrrrr
2009-07-08 19:13 ` Pavel Roskin
2006-05-21 16:00 Raymond Burns
2006-05-22  2:57 ` David S. Miller
2006-05-22  6:09 ` Raymond Burns
2005-10-05  2:36 KokHow Teh
2005-10-05 12:23 ` Vitaly Bordug
2005-10-05  2:32 KokHow Teh
2005-10-04  6:54 KokHow Teh
2005-10-04 15:11 ` David Jander
2005-10-04 15:16   ` Vitaly Bordug
2005-10-05  9:16     ` David Jander
2005-07-30  1:06 Serial console Daniel Ann
2005-07-30  1:19 ` Josh Boyer
2005-07-30  1:36   ` Daniel Ann
2005-07-30  5:46     ` Daniel Ann
2005-07-30  1:27 ` Ricardo Scop
2005-07-30  1:34   ` Daniel Ann
2005-07-30 10:37 ` Anton Wöllert
2005-08-01  1:27   ` Daniel Ann
2005-08-02  3:38     ` JohnsonCheng
2005-08-02 13:39       ` Kumar Gala
2005-08-03  0:16         ` Daniel Ann
     [not found] <3174569B9743D511922F00A0C943142309F80D9F@TYANWEB>
     [not found] ` <20050516205731.GA5914@waste.org>
2005-05-16 23:15   ` serial console Matt Mackall
2005-05-16 23:37     ` Andrew Morton
2005-05-16 23:47       ` Matt Mackall
2005-05-17  1:24         ` Coywolf Qi Hunt
2005-05-17  2:26           ` Matt Mackall
2005-05-17  2:40             ` Coywolf Qi Hunt
2005-05-17  2:19     ` Rob Landley
2003-03-04 14:53 Serial Console Aman
2003-03-04 15:40 ` Mark Hatle
2003-03-04 17:06   ` Ibon Gotxi Garcia
2003-03-04 19:09     ` Dave Wolfe
2003-01-16 21:06 Aman
     [not found] <200208191108120240.0D409F0A@192.168.128.16>
2002-08-19  9:10 ` Carlos Velasco
2002-08-19  9:18   ` Russell King
2002-08-19  9:10 ` Carlos Velasco
2002-08-19 13:17   ` Stuart MacDonald
2000-12-05 18:09 Jon Burgess
2000-12-05 12:04 Steve Hill
2000-12-05 12:11 ` Miquel van Smoorenburg
2000-12-05 14:44 ` Paul Jakma
2000-12-05 14:58   ` Steve Hill
2000-12-05 15:07     ` Chad Schwartz
2000-12-05 15:14     ` Paul Jakma
2000-12-05 15:28       ` Steve Hill
2000-12-05 15:38         ` Chad Schwartz
2000-12-05 16:25       ` Rogier Wolff
2000-12-05 17:00         ` Miquel van Smoorenburg
2000-12-06 13:09 ` Vitaly Luban
2000-02-11 17:08 serial console Pat O'Rourke
2000-02-11 21:04 ` Matthew Jacob
2000-02-11 21:21 ` Pat O'Rourke
1998-04-02 17:31 kernel panic Ulf Carlsson
1998-04-02 18:55 ` Dong Liu
1998-04-02 18:47   ` ralf
1998-04-02 20:06     ` serial console Dong Liu
1998-04-02 21:35       ` ralf
1998-04-02 23:16         ` William J. Earl
1998-04-02 23:53           ` Dong Liu
1998-04-03  0:47             ` ralf
1998-04-04 20:27         ` Oliver Frommel

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.