git: 50322316e54d - stable/13 - termios: add more speeds

Bjoern A. Zeeb bz at FreeBSD.org
Sun Jul 18 00:35:43 UTC 2021


The branch stable/13 has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=50322316e54d67474a099a2ac969f09066cb338b

commit 50322316e54d67474a099a2ac969f09066cb338b
Author:     Bjoern A. Zeeb <bz at FreeBSD.org>
AuthorDate: 2021-03-10 22:17:07 +0000
Commit:     Bjoern A. Zeeb <bz at FreeBSD.org>
CommitDate: 2021-07-18 00:34:57 +0000

    termios: add more speeds
    
    A lot of small arm64 gadgets are using 1500000 as console speed.
    While cu can perfectly deal with this some 3rd party software, e.g.,
    comms/conserver-con add speeds based on B<n> being defined.
    Having it defined here simplifies enhancing other software.
    
    Obtained from:  NetBSD sys/sys/termios.h 1.36
    Reviewed by:    philip (,okayed by imp)
    Differential Revision:  https://reviews.freebsd.org/D29209
    
    (cherry picked from commit 0209400ceaed553a3f06a5f3759de992ddb58037)
---
 sys/sys/_termios.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/sys/sys/_termios.h b/sys/sys/_termios.h
index edbda0a161fc..b9fe17881b3a 100644
--- a/sys/sys/_termios.h
+++ b/sys/sys/_termios.h
@@ -208,7 +208,15 @@
 #define	B115200	115200
 #define	B230400	230400
 #define	B460800	460800
+#define B500000 500000
 #define	B921600	921600
+#define B1000000	1000000U
+#define B1500000	1500000U
+#define B2000000	2000000U
+#define B2500000	2500000U
+#define B3000000	3000000U
+#define B3500000	3500000U
+#define B4000000	4000000U
 #define	EXTA	19200
 #define	EXTB	38400
 #endif


More information about the dev-commits-src-all mailing list