aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2023-08-21 00:06:42 +0000
committerEd Maste <emaste@FreeBSD.org>2024-03-28 12:49:46 +0000
commitbfe164303878077835234585e563257f6f231985 (patch)
tree17160b8158b17b073652d10a29306c429fe564dd
parent50aa88e00999276660e6234dd7e86d04e68c9b2a (diff)
downloaddoc-bfe1643038.tar.gz
doc-bfe1643038.zip
serialcomms: update for 115200 bps default
Reviewed by: imp Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D42487
-rw-r--r--documentation/content/en/books/handbook/serialcomms/_index.adoc12
1 files 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.