PERFORCE change 28576 for review
Peter Wemm
peter at FreeBSD.org
Tue Apr 8 17:14:22 PDT 2003
http://perforce.freebsd.org/chv.cgi?CH=28576
Change 28576 by peter at peter_daintree on 2003/04/08 17:14:13
remove serial_putc hack, sio works now.
Affected files ...
.. //depot/projects/hammer/sys/kern/tty_cons.c#5 edit
Differences ...
==== //depot/projects/hammer/sys/kern/tty_cons.c#5 (text+ko) ====
@@ -116,10 +116,8 @@
static int openflag; /* how /dev/console was opened */
static int cn_is_open;
static u_char console_pausing; /* pause after each line during probe */
-#if 0
static char *console_pausestr=
"<pause; press any key to proceed to next line or '.' to end pause mode>";
-#endif
void cndebug(char *);
@@ -543,11 +541,6 @@
void
cnputc(int c)
{
-#if 1
- if (c == '\n')
- serial_putc('\r');
- serial_putc(c);
-#else
struct cn_device *cnd;
struct consdev *cn;
char *cp;
@@ -574,7 +567,6 @@
cnputc(' ');
cnputc('\r');
}
-#endif
}
void
More information about the p4-projects
mailing list