From owner-cvs-all Tue Sep 15 11:17:01 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29246 for cvs-all-outgoing; Tue, 15 Sep 1998 11:17:01 -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 LAA29237; Tue, 15 Sep 1998 11:16:56 -0700 (PDT) (envelope-from sos@FreeBSD.org) From: Søren Schmidt Received: (from sos@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA20541; Tue, 15 Sep 1998 11:16:40 -0700 (PDT) Date: Tue, 15 Sep 1998 11:16:40 -0700 (PDT) Message-Id: <199809151816.LAA20541@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT files.i386 options.i386 src/sys/i386/include console.h src/sys/i386/include/pc vesa.h src/sys/i386/isa scvesactl.c scvidctl.c vesa.c videoio.c videoio.h kbdtables.h pcaudio.c syscons.c syscons.h wst.c src/lkm/syscons ... Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk sos 1998/09/15 11:16:39 PDT Modified files: sys/i386/conf LINT files.i386 options.i386 sys/i386/include console.h sys/i386/isa kbdtables.h pcaudio.c syscons.c syscons.h wst.c lkm/syscons saver.h lkm/syscons/blank blank_saver.c lkm/syscons/daemon daemon_saver.c lkm/syscons/fade fade_saver.c lkm/syscons/green green_saver.c lkm/syscons/snake snake_saver.c lkm/syscons/star star_saver.c usr.sbin/vidcontrol vidcontrol.1 vidcontrol.c Added files: sys/i386/include/pc vesa.h sys/i386/isa scvesactl.c scvidctl.c vesa.c videoio.c videoio.h Log: Add VESA support to syscons. Kazu writes: The VESA support code requires vm86 support. Make sure your kernel configuration file has the following line. options "VM86" If you want to statically link the VESA support code to the kernel, add the following option to the kernel configuration file. options "VESA" The vidcontrol command now accepts the following video mode names: VESA_132x25, VESA_132x43, VESA_132x50, VESA_132x60, VESA_800x600 The VESA_800x600 mode is a raster display mode. The 80x25 text will be displayed on the 800x600 screen. Useful for some laptop computers. vidcontrol accepts the new `-i ' option, where must be either `adapter' or `mode'. When the `-i adapter' option is given, vidcontrol will print basic information (not much) on the video adapter. When the `-i mode' option is specified, vidcontrol will list video modes which are actually supported by the video adapter. Submitted by: Kazutaka YOKOTA yokota@FreeBSD.ORG Revision Changes Path 1.466 +4 -1 src/sys/i386/conf/LINT 1.204 +5 -1 src/sys/i386/conf/files.i386 1.87 +3 -1 src/sys/i386/conf/options.i386 1.39 +124 -3 src/sys/i386/include/console.h 1.41 +5 -5 src/sys/i386/isa/kbdtables.h 1.43 +5 -5 src/sys/i386/isa/pcaudio.c 1.278 +493 -1330 src/sys/i386/isa/syscons.c 1.40 +62 -30 src/sys/i386/isa/syscons.h 1.12 +4 -4 src/sys/i386/isa/wst.c 1.11 +6 -6 src/lkm/syscons/saver.h 1.12 +5 -5 src/lkm/syscons/blank/blank_saver.c 1.10 +3 -3 src/lkm/syscons/daemon/daemon_saver.c 1.13 +6 -6 src/lkm/syscons/fade/fade_saver.c 1.12 +5 -5 src/lkm/syscons/green/green_saver.c 1.18 +7 -7 src/lkm/syscons/snake/snake_saver.c 1.15 +7 -7 src/lkm/syscons/star/star_saver.c 1.13 +6 -1 src/usr.sbin/vidcontrol/vidcontrol.1 1.20 +120 -2 src/usr.sbin/vidcontrol/vidcontrol.c