Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Jun 1999 07:14:07 -0700 (PDT)
From:      Kazutaka YOKOTA <yokota@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/i386/i386 cons.c cons.h src/sys/i386/isa vesa.c src/sys/i386/include console.h src/sys/alpha/alpha cons.c src/sys/alpha/conf files.alpha options.alpha src/sys/alpha/include cons.h console.h src/sys/dev/fb vga.c fb.c fbreg.h splash.c ...
Message-ID:  <199906221414.HAA17012@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
yokota      1999/06/22 07:14:07 PDT

  Modified files:
    sys/i386/i386        cons.c cons.h 
    sys/i386/isa         vesa.c 
    sys/i386/include     console.h 
    sys/alpha/alpha      cons.c 
    sys/alpha/conf       files.alpha options.alpha 
    sys/alpha/include    cons.h console.h 
    sys/dev/fb           fb.c fbreg.h splash.c splashreg.h 
                         vgareg.h 
    sys/dev/syscons      scvesactl.c scvidctl.c syscons.c 
                         syscons.h 
    sys/i386/conf        LINT files.i386 options.i386 
    sys/i386/isa/pcvt    pcvt_drv.c 
    sys/isa              sio.c syscons_isa.c vga_isa.c 
    sys/sys              fbio.h 
    sys/modules/syscons/blank blank_saver.c 
    sys/modules/syscons/daemon daemon_saver.c 
    sys/modules/syscons/fade fade_saver.c 
    sys/modules/syscons/fire fire_saver.c 
    sys/modules/syscons/green green_saver.c 
    sys/modules/syscons/logo logo_saver.c 
    sys/modules/syscons/rain rain_saver.c 
    sys/modules/syscons/snake snake_saver.c 
    sys/modules/syscons/star star_saver.c 
    sys/modules/syscons/warp warp_saver.c 
    sys/modules/splash/bmp splash_bmp.c 
    sys/modules/splash/pcx splash_pcx.c 
  Added files:
    sys/dev/fb           vga.c 
    sys/dev/syscons      schistory.c scmouse.c scvgarndr.c scvtb.c 
    sys/sys              consio.h kbio.h 
  Removed files:
    sys/modules/syscons  saver.h 
  Log:
  The second phase of syscons reorganization.
  
  - Split syscons source code into manageable chunks and reorganize
    some of complicated functions.
  
  - Many static variables are moved to the softc structure.
  
  - Added a new key function, PREV.  When this key is pressed, the vty
    immediately before the current vty will become foreground.  Analogue
    to PREV, which is usually assigned to the PrntScrn key.
    PR: kern/10113
    Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
  
  - Modified the kernel console input function sccngetc() so that it
    handles function keys properly.
  
  - Reorganized the screen update routine.
  
  - VT switching code is reorganized.  It now should be slightly more
    robust than before.
  
  - Added the DEVICE_RESUME function so that syscons no longer hooks the
    APM resume event directly.
  
  - New kernel configuration options: SC_NO_CUTPASTE, SC_NO_FONT_LOADING,
    SC_NO_HISTORY and SC_NO_SYSMOUSE.
    Various parts of syscons can be omitted so that the kernel size is
    reduced.
  
    SC_PIXEL_MODE
    Made the VESA 800x600 mode an option, rather than a standard part of
    syscons.
  
    SC_DISABLE_DDBKEY
    Disables the `debug' key combination.
  
    SC_ALT_MOUSE_IMAGE
    Inverse the character cell at the mouse cursor position in the text
    console, rather than drawing an arrow on the screen.
    Submitted by: Nick Hibma (n_hibma@FreeBSD.ORG)
  
    SC_DFLT_FONT
    makeoptions "SC_DFLT_FONT=_font_name_"
    Include the named font as the default font of syscons.  16-line,
    14-line and 8-line font data will be compiled in.  This option replaces
    the existing STD8X16FONT option, which loads 16-line font data only.
  
  - The VGA driver is split into /sys/dev/fb/vga.c and /sys/isa/vga_isa.c.
  
  - The video driver provides a set of ioctl commands to manipulate the
    frame buffer.
  
  - New kernel configuration option: VGA_WIDTH90
    Enables 90 column modes: 90x25, 90x30, 90x43, 90x50, 90x60.  These
    modes are mot always supported by the video card.
    PR: i386/7510
    Submitted by: kbyanc@freedomnet.com and alexv@sui.gda.itesm.mx.
  
  - The header file machine/console.h is reorganized; its contents is now
    split into sys/fbio.h, sys/kbio.h (a new file) and sys/consio.h
    (another new file).  machine/console.h is still maintained for
    compatibility reasons.
  
  - Kernel console selection/installation routines are fixed and
    slightly rebumped so that it should now be possible to switch between
    the interanl kernel console (sc or vt) and a remote kernel console
    (sio) again, as it was in 2.x, 3.0 and 3.1.
  
  - Screen savers and splash screen decoders
    Because of the header file reorganization described above, screen
    savers and splash screen decoders are slightly modified.  After this
    update, /sys/modules/syscons/saver.h is no longer necessary and is
    removed.
  
  Revision  Changes    Path
  1.68      +11 -6     src/sys/i386/i386/cons.c
  1.20      +8 -5      src/sys/i386/i386/cons.h
  1.25      +566 -102  src/sys/i386/isa/vesa.c
  1.46      +5 -632    src/sys/i386/include/console.h
  1.11      +15 -23    src/sys/alpha/alpha/cons.c
  1.22      +6 -1      src/sys/alpha/conf/files.alpha
  1.12      +15 -5     src/sys/alpha/conf/options.alpha
  1.3       +11 -1     src/sys/alpha/include/cons.h
  1.45      +5 -633    src/sys/alpha/include/console.h
  1.6       +433 -40   src/sys/dev/fb/fb.c
  1.4       +52 -13    src/sys/dev/fb/fbreg.h
  1.4       +9 -6      src/sys/dev/fb/splash.c
  1.3       +3 -2      src/sys/dev/fb/splashreg.h
  1.2       +32 -2     src/sys/dev/fb/vgareg.h
  1.11      +4 -5      src/sys/dev/syscons/scvesactl.c
  1.9       +343 -129  src/sys/dev/syscons/scvidctl.c
  1.307     +1896 -2359src/sys/dev/syscons/syscons.c
  1.48      +345 -72   src/sys/dev/syscons/syscons.h
  1.608     +20 -11    src/sys/i386/conf/LINT
  1.248     +10 -5     src/sys/i386/conf/files.i386
  1.118     +16 -3     src/sys/i386/conf/options.i386
  1.55      +8 -1      src/sys/i386/isa/pcvt/pcvt_drv.c
  1.250     +6 -9      src/sys/isa/sio.c
  1.5       +165 -5    src/sys/isa/syscons_isa.c
  1.11      +82 -2047  src/sys/isa/vga_isa.c
  1.6       +286 -3    src/sys/sys/fbio.h
  1.16      +12 -59    src/sys/modules/syscons/blank/blank_saver.c
  1.16      +72 -31    src/sys/modules/syscons/daemon/daemon_saver.c
  1.17      +18 -51    src/sys/modules/syscons/fade/fade_saver.c
  1.5       +6 -3      src/sys/modules/syscons/fire/fire_saver.c
  1.16      +12 -70    src/sys/modules/syscons/green/green_saver.c
  1.7       +7 -3      src/sys/modules/syscons/logo/logo_saver.c
  1.4       +6 -2      src/sys/modules/syscons/rain/rain_saver.c
  1.24      +40 -16    src/sys/modules/syscons/snake/snake_saver.c
  1.21      +38 -11    src/sys/modules/syscons/star/star_saver.c
  1.6       +6 -3      src/sys/modules/syscons/warp/warp_saver.c
  1.9       +2 -3      src/sys/modules/splash/bmp/splash_bmp.c
  1.2       +2 -3      src/sys/modules/splash/pcx/splash_pcx.c



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




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