From owner-cvs-sys Sat Aug 10 15:14:58 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA27795 for cvs-sys-outgoing; Sat, 10 Aug 1996 15:14:58 -0700 (PDT) Received: (from joerg@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA27748; Sat, 10 Aug 1996 15:14:40 -0700 (PDT) Date: Sat, 10 Aug 1996 15:14:40 -0700 (PDT) From: Joerg Wunsch Message-Id: <199608102214.PAA27748@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/i386/isa/pcvt pcvt_conf.h pcvt_drv.c pcvt_hdr.h pcvt_kbd.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk joerg 96/08/10 15:14:39 Modified: sys/i386/isa/pcvt pcvt_conf.h pcvt_drv.c pcvt_hdr.h pcvt_kbd.c Log: Fix many long-standing bugs and problems with pcvt, namely: . make pccncheck() work even when interrupts are disabled, so the ``Press a key on the console...'' procedure will work, . make kernel colors #ifndef, so they can be overridden from the config file, . use shutdown_nice() instead of cpu_reset() if Ctrl-Alt-Del is enabled, . allow pccngetc() to return more than a single character, so the arrow keys will work (and thus visual UserConfig!), . fix a warning. This closes all know PRs related to pcvt, in particular #845, #1236, and #1265. PR #991 is a duplicate for 845, and PR #1283 has already been fixed earlier in rev 1.11 of pcvt_conf.h. Submitted by: Ulf Kieber (kieber@sax.de), for the kernel color fix Revision Changes Path 1.5 +8 -2 src/sys/i386/isa/pcvt/pcvt_conf.h 1.22 +19 -4 src/sys/i386/isa/pcvt/pcvt_drv.c 1.19 +6 -6 src/sys/i386/isa/pcvt/pcvt_hdr.h 1.11 +7 -7 src/sys/i386/isa/pcvt/pcvt_kbd.c