summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand/libsa/biosdev.h
diff options
context:
space:
mode:
authorflipk <flipk@cvs.openbsd.org>1997-09-20 22:40:45 +0000
committerflipk <flipk@cvs.openbsd.org>1997-09-20 22:40:45 +0000
commit1c5b365949990faa58927a05e6e7062fc8482f80 (patch)
tree53f82ac8604ed6178bfd4d513a9d0411a2b871fe /sys/arch/i386/stand/libsa/biosdev.h
parent2f49f029d12cd95e62b6d369737c83ab6662eb5c (diff)
- add 'stty [baudrate]' command to /boot, for serial consoles
- switch baud rates using i/o instead of bios, since bios commands have only a limited bitwidth for baudrate, and max out at 9600 - when switching console devices, print msg to both old device and new - fix timeout bug in com_getc() (dev | 0x80 was reading gobbledygook) - document 'stty' command in boot(8) - wording and cleanup in man pages
Diffstat (limited to 'sys/arch/i386/stand/libsa/biosdev.h')
-rw-r--r--sys/arch/i386/stand/libsa/biosdev.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/libsa/biosdev.h b/sys/arch/i386/stand/libsa/biosdev.h
index eca8f947751..e54a352ba41 100644
--- a/sys/arch/i386/stand/libsa/biosdev.h
+++ b/sys/arch/i386/stand/libsa/biosdev.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: biosdev.h,v 1.20 1997/09/03 04:32:43 weingart Exp $ */
+/* $OpenBSD: biosdev.h,v 1.21 1997/09/20 22:40:44 flipk Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -52,6 +52,7 @@ void pc_putc __P((dev_t, int));
void pc_pollc __P((dev_t, int));
void com_probe __P((struct consdev *));
void com_init __P((struct consdev *));
+int com_setsp __P((int));
int com_getc __P((dev_t));
void com_putc __P((dev_t, int));
void com_pollc __P((dev_t, int));