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:
parent
775d2d2a7f
commit
2c0d613996
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=15065
1 changed files with 5 additions and 5 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue