The branch main has been updated by bz:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=0209400ceaed553a3f06a5f3759de992ddb58037

commit 0209400ceaed553a3f06a5f3759de992ddb58037
Author:     Bjoern A. Zeeb <[email protected]>
AuthorDate: 2021-03-10 22:17:07 +0000
Commit:     Bjoern A. Zeeb <[email protected]>
CommitDate: 2021-03-18 10:44:01 +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
    MFC-after:      2 weeks
    Reviewed-by:    philip (,okayed by imp)
    Differential Revision:  https://reviews.freebsd.org/D29209
---
 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
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to