git: bfe1643038 - main - serialcomms: update for 115200 bps default

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Thu, 28 Mar 2024 12:50:55 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/doc/commit/?id=bfe164303878077835234585e563257f6f231985

commit bfe164303878077835234585e563257f6f231985
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-08-21 00:06:42 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-03-28 12:49:46 +0000

    serialcomms: update for 115200 bps default
    
    Reviewed by:    imp
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D42487
---
 .../content/en/books/handbook/serialcomms/_index.adoc        | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/documentation/content/en/books/handbook/serialcomms/_index.adoc b/documentation/content/en/books/handbook/serialcomms/_index.adoc
index 0ce967c73d..a5004d9821 100644
--- a/documentation/content/en/books/handbook/serialcomms/_index.adoc
+++ b/documentation/content/en/books/handbook/serialcomms/_index.adoc
@@ -490,10 +490,10 @@ The default [.filename]#/etc/ttys# configures support for the first four serial
 
 [.programlisting]
 ....
-ttyu0   "/usr/libexec/getty std.9600"   dialup  off secure
-ttyu1   "/usr/libexec/getty std.9600"   dialup  off secure
-ttyu2   "/usr/libexec/getty std.9600"   dialup  off secure
-ttyu3   "/usr/libexec/getty std.9600"   dialup  off secure
+ttyu0   "/usr/libexec/getty std.115200"   dialup  off secure
+ttyu1   "/usr/libexec/getty std.115200"   dialup  off secure
+ttyu2   "/usr/libexec/getty std.115200"   dialup  off secure
+ttyu3   "/usr/libexec/getty std.115200"   dialup  off secure
 ....
 
 When attaching a terminal to one of those ports, modify the default entry to set the required speed and terminal type, to turn the device `on` and, if needed, to change the port's `secure` setting.
@@ -1163,12 +1163,12 @@ At the moment, the boot loader has no option equivalent to `-P` in the boot bloc
 ====
 While it is not required, it is possible to provide a `login` prompt over the serial line.
 To configure this, edit the entry for the serial port in [.filename]#/etc/ttys# using the instructions in <<term-config>>.
-If the speed of the serial port has been changed, change `std.9600` to match the new setting.
+If the speed of the serial port has been changed, change `std.115200` to match the new setting.
 ====
 
 === Setting a Faster Serial Port Speed
 
-By default, the serial port settings are 9600 baud, 8 bits, no parity, and 1 stop bit.
+By default, the serial port settings are 115200 baud, 8 bits, no parity, and 1 stop bit.
 To change the default console speed, use one of the following options:
 
 * Edit [.filename]#/etc/make.conf# and set `BOOT_COMCONSOLE_SPEED` to the new console speed.