diff options
author | Nate Williams <nate@FreeBSD.org> | 1996-11-11 22:01:56 +0000 |
---|---|---|
committer | Nate Williams <nate@FreeBSD.org> | 1996-11-11 22:01:56 +0000 |
commit | 6620cf786824467597eb6547c8485a0c5e336a08 (patch) | |
tree | 8fc36972e09f242fabf1d7d7f3eabf04e9719939 /sys/isa/syscons.c | |
parent | 1fe048505d64d473bc877004ba60183b06080be2 (diff) |
Removed 'XT_KEYBOARD' option from syscons. Document new-style way of
getting the same behavior using the flags, which can be done inside of
UserConfig. (Also document other syscons flags which were previously
undocumented).
Requested by: bde
Notes
Notes:
svn path=/head/; revision=19655
Diffstat (limited to 'sys/isa/syscons.c')
-rw-r--r-- | sys/isa/syscons.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c index d326ebea31c1..fefed148698d 100644 --- a/sys/isa/syscons.c +++ b/sys/isa/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.183 1996/11/04 21:01:08 sos Exp $ + * $Id: syscons.c,v 1.184 1996/11/10 16:44:09 nate Exp $ */ #include "sc.h" @@ -349,9 +349,6 @@ gotack: */ if ( dev->id_flags & XT_KEYBD ) xt_keyboard = 1; -#ifdef XT_KEYBOARD - xt_keyboard = 1; -#endif if ( xt_keyboard ) { kbd_wait(); outb(KB_DATA, 0xF0); |