diff options
author | pst <pst@FreeBSD.org> | 1996-10-23 07:29:44 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-10-23 07:29:44 +0000 |
commit | 3472d01c715f7cd408aa362311ee17205616c86c (patch) | |
tree | 217a64a58e3fa8a6b4c9561833c12cab26ffa46c /sys/dev/rc | |
parent | da2957207b1d3dec86dcf8334bc11b75a9113b84 (diff) | |
download | FreeBSD-src-3472d01c715f7cd408aa362311ee17205616c86c.zip FreeBSD-src-3472d01c715f7cd408aa362311ee17205616c86c.tar.gz |
Remove SC_KBD_PROBE_WORKS option and replace it with a simple run-time flag
bit (0x0008) in the sc driver configuration line. This way it's easy to
boink a generic kernel.
Also, document and place in an opt_ file the #define's for overriding which
serial port is the system console.
Approved by: sos
Diffstat (limited to 'sys/dev/rc')
-rw-r--r-- | sys/dev/rc/rc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c index fd37df2..677ae14 100644 --- a/sys/dev/rc/rc.c +++ b/sys/dev/rc/rc.c @@ -30,7 +30,9 @@ * */ +#include "opt_comconsole.h" #include "rc.h" + #if NRC > 0 /*#define RCDEBUG*/ |