Start the update of serial console section: the kernel syntax was

updated from 3.X to 4.X syntax, 5.X one will be added soon with all
needed fixes (device.hints etc.).
This commit is contained in:
Marc Fonvieille 2002-11-27 20:17:50 +00:00
parent 775d2d2a7f
commit 2c0d613996
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=15065

View file

@ -2077,7 +2077,7 @@ raisechar=^^</programlisting>
<para>Example:</para>
<programlisting>device sio0 at isa? port "IO_COM1" tty flags 0x10 irq 4</programlisting>
<programlisting>device sio0 at isa? port IO_COM1 flags 0x10 irq 4</programlisting>
<para>See the &man.sio.4; manual page for more details.</para>
@ -2274,7 +2274,7 @@ boot:</screen>
<title>Case 1: You Set the flags to 0x10 for
<devicename>sio0</devicename></title>
<programlisting>device sio0 at isa? port "IO_COM1" tty flags 0x10 irq 4</programlisting>
<programlisting>device sio0 at isa? port IO_COM1 flags 0x10 irq 4</programlisting>
<informaltable frame="none">
<tgroup cols="4">
@ -2337,7 +2337,7 @@ boot:</screen>
<sect3>
<title>Case 2: You Set the flags to 0x30 for sio0</title>
<programlisting>device sio0 at isa? port "IO_COM1" tty flags 0x30 irq 4</programlisting>
<programlisting>device sio0 at isa? port IO_COM1 flags 0x30 irq 4</programlisting>
<informaltable frame="none">
<tgroup cols="4">
@ -2452,11 +2452,11 @@ boot:</screen>
example, if you want to make <devicename>sio1</devicename>
(<devicename>COM2</devicename>) the console:</para>
<programlisting>device sio1 at isa? port "IO_COM2" tty flags 0x10 irq 3</programlisting>
<programlisting>device sio1 at isa? port IO_COM2 flags 0x10 irq 3</programlisting>
<para>or</para>
<programlisting>device sio1 at isa? port "IO_COM2" tty flags 0x30 irq 3</programlisting>
<programlisting>device sio1 at isa? port IO_COM2 flags 0x30 irq 3</programlisting>
<para>The console flags for the other serial ports should not be
set.</para>