summaryrefslogtreecommitdiff
path: root/usr/src/cmd/tip
diff options
context:
space:
mode:
authorTim Marsland <Tim.Marsland@Sun.COM>2009-04-12 10:48:30 -0700
committerTim Marsland <Tim.Marsland@Sun.COM>2009-04-12 10:48:30 -0700
commitde81e71e031139a0a7f13b7bf64152c3faa76698 (patch)
treee4f1f70082c50c2d6545d118596050ee3e9adad7 /usr/src/cmd/tip
parent73cd555c10e70dac413ae4b40de8450a291750ac (diff)
downloadillumos-joyent-de81e71e031139a0a7f13b7bf64152c3faa76698.tar.gz
6763764 Support for FTDI USB Serial adapters
6798921 usbser mishandles some ioctls 4696628 USB serial needs properties to ignore CD 6821751 Add support for 921600 baud
Diffstat (limited to 'usr/src/cmd/tip')
-rw-r--r--usr/src/cmd/tip/tip.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr/src/cmd/tip/tip.c b/usr/src/cmd/tip/tip.c
index b912d6e33b..bc8bcd1f85 100644
--- a/usr/src/cmd/tip/tip.c
+++ b/usr/src/cmd/tip/tip.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
+ * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
@@ -9,8 +9,6 @@
* specifies the terms and conditions for redistribution.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/*
* tip - UNIX link to other systems
* tip [-v] [-speed] system-name
@@ -27,7 +25,8 @@
int bauds[] = {
0, 50, 75, 110, 134, 150, 200, 300, 600,
1200, 1800, 2400, 4800, 9600, 19200, 38400,
- 57600, 76800, 115200, 153600, 230400, 307200, 460800, -1
+ 57600, 76800, 115200, 153600, 230400, 307200,
+ 460800, 921600, -1
};
extern void tipout(void) __NORETURN;