From 2c0d61399623630d8484f6ac6acb971e27565f1b Mon Sep 17 00:00:00 2001 From: Marc Fonvieille Date: Wed, 27 Nov 2002 20:17:50 +0000 Subject: [PATCH] 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.). --- .../books/handbook/serialcomms/chapter.sgml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml b/en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml index 0fcbc3bbf6..865eb9f53f 100644 --- a/en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml +++ b/en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml @@ -2077,7 +2077,7 @@ raisechar=^^ Example: - device sio0 at isa? port "IO_COM1" tty flags 0x10 irq 4 + device sio0 at isa? port IO_COM1 flags 0x10 irq 4 See the &man.sio.4; manual page for more details. @@ -2274,7 +2274,7 @@ boot: Case 1: You Set the flags to 0x10 for <devicename>sio0</devicename> - device sio0 at isa? port "IO_COM1" tty flags 0x10 irq 4 + device sio0 at isa? port IO_COM1 flags 0x10 irq 4 @@ -2337,7 +2337,7 @@ boot: Case 2: You Set the flags to 0x30 for sio0 - device sio0 at isa? port "IO_COM1" tty flags 0x30 irq 4 + device sio0 at isa? port IO_COM1 flags 0x30 irq 4 @@ -2452,11 +2452,11 @@ boot: example, if you want to make sio1 (COM2) the console: - device sio1 at isa? port "IO_COM2" tty flags 0x10 irq 3 + device sio1 at isa? port IO_COM2 flags 0x10 irq 3 or - device sio1 at isa? port "IO_COM2" tty flags 0x30 irq 3 + device sio1 at isa? port IO_COM2 flags 0x30 irq 3 The console flags for the other serial ports should not be set.