diff options
author | 1997-04-02 04:59:22 +0000 | |
---|---|---|
committer | 1997-04-02 04:59:22 +0000 | |
commit | e633220bf58b152f0714e4604ff2ffb96aa09faa (patch) | |
tree | e5d653f7f186d6c1f87b345cf3ae431d91272a63 | |
parent | no more arch/i386/stand/libsa/Makefile.inc (diff) | |
download | wireguard-openbsd-e633220bf58b152f0714e4604ff2ffb96aa09faa.tar.xz wireguard-openbsd-e633220bf58b152f0714e4604ff2ffb96aa09faa.zip |
add dumb probe routine
-rw-r--r-- | sys/lib/libsa/cons.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/lib/libsa/cons.c b/sys/lib/libsa/cons.c index 3dc3a10a3c8..2e38e664f34 100644 --- a/sys/lib/libsa/cons.c +++ b/sys/lib/libsa/cons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cons.c,v 1.1 1996/10/23 09:02:53 mickey Exp $ */ +/* $OpenBSD: cons.c,v 1.2 1997/04/02 04:59:22 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -36,6 +36,18 @@ struct consw *console = &consw[0]; +int +cons_probe() +{ + int i; + for (i = 0; i < ncons; i++) { + if ((consw[i].cn_probe)() != 0) + printf("%s present\n", consw[i].name); + } + printf("using %s console\n", console->name); + return 1; +} + void putc(c) int c; |