Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Sep 1998 11:16:40 -0700 (PDT)
From:      Søren Schmidt <sos@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 ...
Message-ID:  <199809151816.LAA20541@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <info>' option, where <info> 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199809151816.LAA20541>