git: aaff6a85ff1e - main - fortune: use 115200 in serial example
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 05 Oct 2023 12:14:44 UTC
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=aaff6a85ff1e506e38a8c4f94f1cb1065427e8c3 commit aaff6a85ff1e506e38a8c4f94f1cb1065427e8c3 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2023-10-05 12:11:46 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2023-10-05 12:14:23 +0000 fortune: use 115200 in serial example Commit 4722ceb7d53e switched the default serial rate to 115200 bps. Follow suit in the freebsd-tips fortune example. Reviewed by: bcr Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D41495 --- usr.bin/fortune/datfiles/freebsd-tips | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/fortune/datfiles/freebsd-tips b/usr.bin/fortune/datfiles/freebsd-tips index dd2c3cfb0495..3ee4ca3a5972 100644 --- a/usr.bin/fortune/datfiles/freebsd-tips +++ b/usr.bin/fortune/datfiles/freebsd-tips @@ -833,7 +833,7 @@ $ sysctl -n hw.pagesize To establish a serial connection to anything including a USB device, nothing more than cu(1) is needed: -$ cu -s 9600 -l /dev/ttyU0 +$ cu -s 115200 -l /dev/ttyU0 -- Daniel Ebdrup Jensen <debdrup@FreeBSD.org> %