From owner-cvs-all Thu Oct 1 04:39:28 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04324 for cvs-all-outgoing; Thu, 1 Oct 1998 04:39:28 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA04313; Thu, 1 Oct 1998 04:39:24 -0700 (PDT) (envelope-from yokota@FreeBSD.org) From: Kazutaka YOKOTA Received: (from yokota@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA21986; Thu, 1 Oct 1998 04:39:19 -0700 (PDT) Date: Thu, 1 Oct 1998 04:39:19 -0700 (PDT) Message-Id: <199810011139.EAA21986@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/include console.h src/sys/i386/isa scvesactl.c scvidctl.c syscons.c syscons.h vesa.c videoio.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk yokota 1998/10/01 04:39:19 PDT Modified files: sys/i386/include console.h sys/i386/isa scvesactl.c scvidctl.c syscons.c syscons.h vesa.c videoio.c Log: Yet another round of fixes for the VESA support code. - Express various sizes in bytes, rather than Kbytes, in the video mode and adapter information structures. - Fill 0 in the linear buffer size field if the linear frame buffer is not available. - Remove SW_VESA_USER ioctl. It is still experimetal and was not meant to be released. - Fix missing cast operator. - Correctly handle pointers returned by the VESA BIOS. The pointers may point to the area either in the BIOS ROM or in the buffer supplied by the caller. - Set the destructive cursor at the right moment. Revision Changes Path 1.41 +1 -3 src/sys/i386/include/console.h 1.6 +1 -10 src/sys/i386/isa/scvesactl.c 1.5 +3 -6 src/sys/i386/isa/scvidctl.c 1.283 +4 -3 src/sys/i386/isa/syscons.c 1.44 +1 -2 src/sys/i386/isa/syscons.h 1.7 +59 -22 src/sys/i386/isa/vesa.c 1.6 +42 -42 src/sys/i386/isa/videoio.c