From 2d1565ea86417a77cedfd20e537a46de5a418f5c Mon Sep 17 00:00:00 2001 From: Aaron Campbell Date: Tue, 30 Jan 2001 06:50:13 +0000 Subject: Change /dev/ttyE* to /dev/ttyC* to reflect reality in OpenBSD. --- sbin/wsconsctl/wsconsctl.8 | 4 ++-- sbin/wsconsctl/wsconsctl.c | 4 ++-- usr.sbin/wsconscfg/wsconscfg.8 | 4 ++-- usr.sbin/wsconscfg/wsconscfg.c | 4 ++-- usr.sbin/wsfontload/wsfontload.8 | 4 ++-- usr.sbin/wsfontload/wsfontload.c | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/sbin/wsconsctl/wsconsctl.8 b/sbin/wsconsctl/wsconsctl.8 index 448e505ab1a..93ae6f59643 100644 --- a/sbin/wsconsctl/wsconsctl.8 +++ b/sbin/wsconsctl/wsconsctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: wsconsctl.8,v 1.2 2000/07/02 21:00:44 aaron Exp $ +.\" $OpenBSD: wsconsctl.8,v 1.3 2001/01/30 06:50:12 aaron Exp $ .\" $NetBSD: wsconsctl.8,v 1.5 1999/09/12 18:47:11 kleink Exp $ .\" .\" Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -173,7 +173,7 @@ Adds 200 to the current pitch of the bell. keyboard control device .It Pa /dev/wsmouse0 mouse control device -.It Pa /dev/ttyE0 +.It Pa /dev/ttyC0 display control device .It Pa /usr/include/dev/wscons/wsconsio.h keyboard/mouse/display definitions diff --git a/sbin/wsconsctl/wsconsctl.c b/sbin/wsconsctl/wsconsctl.c index a3b47566fcb..6fd01846209 100644 --- a/sbin/wsconsctl/wsconsctl.c +++ b/sbin/wsconsctl/wsconsctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsctl.c,v 1.1 2000/07/01 23:52:45 mickey Exp $ */ +/* $OpenBSD: wsconsctl.c,v 1.2 2001/01/30 06:50:12 aaron Exp $ */ /* $NetBSD: wsconsctl.c,v 1.2 1998/12/29 22:40:20 hannken Exp $ */ /*- @@ -46,7 +46,7 @@ #define PATH_KEYBOARD "/dev/wskbd0" #define PATH_MOUSE "/dev/wsmouse0" -#define PATH_DISPLAY "/dev/ttyE0" +#define PATH_DISPLAY "/dev/ttyC0" extern const char *__progname; /* from crt0.o */ diff --git a/usr.sbin/wsconscfg/wsconscfg.8 b/usr.sbin/wsconscfg/wsconscfg.8 index cbce2e90c59..c8ac911de90 100644 --- a/usr.sbin/wsconscfg/wsconscfg.8 +++ b/usr.sbin/wsconscfg/wsconscfg.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: wsconscfg.8,v 1.3 2000/11/09 17:53:26 aaron Exp $ +.\" $OpenBSD: wsconscfg.8,v 1.4 2001/01/30 06:50:12 aaron Exp $ .\" $NetBSD: wsconscfg.8,v 1.5 1999/05/15 14:45:06 drochner Exp $ .\" .Dd January 12, 1999 @@ -41,7 +41,7 @@ The options are as follows: .It Fl f Ar ctldev Specify the control device of the wscons display to operate on. Default is -.Pa /dev/ttyEcfg . +.Pa /dev/ttyCcfg . .It Fl d Delete the specified terminal. Any specified terminal that is currently open by a program will not be deleted diff --git a/usr.sbin/wsconscfg/wsconscfg.c b/usr.sbin/wsconscfg/wsconscfg.c index 092587ebb8c..8fecfab5b00 100644 --- a/usr.sbin/wsconscfg/wsconscfg.c +++ b/usr.sbin/wsconscfg/wsconscfg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconscfg.c,v 1.2 2000/09/30 16:06:35 aaron Exp $ */ +/* $OpenBSD: wsconscfg.c,v 1.3 2001/01/30 06:50:12 aaron Exp $ */ /* $NetBSD: wsconscfg.c,v 1.4 1999/07/29 18:24:10 augustss Exp $ */ /* @@ -43,7 +43,7 @@ #include -#define DEFDEV "/dev/ttyEcfg" +#define DEFDEV "/dev/ttyCcfg" static void usage __P((void)); int main __P((int, char**)); diff --git a/usr.sbin/wsfontload/wsfontload.8 b/usr.sbin/wsfontload/wsfontload.8 index bedd7ff7cf7..3a97c3280e7 100644 --- a/usr.sbin/wsfontload/wsfontload.8 +++ b/usr.sbin/wsfontload/wsfontload.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: wsfontload.8,v 1.3 2000/11/09 17:53:27 aaron Exp $ +.\" $OpenBSD: wsfontload.8,v 1.4 2001/01/30 06:50:12 aaron Exp $ .\" $NetBSD: wsfontload.8,v 1.5 1999/04/06 04:54:22 cgd Exp $ .\" .Dd January 13, 1999 @@ -51,7 +51,7 @@ The options are as follows: .It Fl f Ar file Specify the control device of the wscons display to operate on. Default is -.Pa /dev/ttyEcfg . +.Pa /dev/ttyCcfg . .It Fl w Ar width Sets the width of a font character in pixels. Default is 8. diff --git a/usr.sbin/wsfontload/wsfontload.c b/usr.sbin/wsfontload/wsfontload.c index 1104e05d8a2..e743392d271 100644 --- a/usr.sbin/wsfontload/wsfontload.c +++ b/usr.sbin/wsfontload/wsfontload.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsfontload.c,v 1.1 2000/07/02 01:29:44 mickey Exp $ */ +/* $OpenBSD: wsfontload.c,v 1.2 2001/01/30 06:50:12 aaron Exp $ */ /* $NetBSD: wsfontload.c,v 1.2 2000/01/05 18:46:43 ad Exp $ */ /* @@ -43,7 +43,7 @@ #include -#define DEFDEV "/dev/ttyEcfg" +#define DEFDEV "/dev/ttyCcfg" #define DEFWIDTH 8 #define DEFHEIGHT 16 #define DEFENC WSDISPLAY_FONTENC_ISO -- cgit v1.2.3