summaryrefslogtreecommitdiffstats
path: root/sys/modules/syscons
Commit message (Collapse)AuthorAgeFilesLines
* Normalize SUBDIR.ru2004-01-191-13/+13
|
* Don't override CWARNFLAGS in these Makefiles.mux2002-11-113-6/+0
|
* Don't override CWARNFLAGS in this Makefile.mux2002-11-111-2/+0
|
* Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.nyan2002-11-065-20/+0
|
* Add new graphical screen saver (dragon_saver).amorita2002-03-232-0/+15
| | | | Add support for NEC PC-9821 PEGC screen (fire/logo/rain/warp_saver).
* It's OK to be pedantic, but long long literals are OK.phk2002-02-101-1/+1
|
* Drop <bsd.man.mk> support from <bsd.kmod.mk>.ru2002-01-1111-11/+0
| | | | Not objected to by: -current
* Build modules from the main src/sys tree.peter2001-08-0923-1960/+23
| | | | | Tidy up some loose ends.. there were extra -I's being added to CFLAGS for no reason.
* Fixed warnings.nyan2001-02-213-14/+14
|
* Added necessary include for pc98.nyan2001-01-251-0/+1
|
* Added PC-98 apm support.nyan2001-01-222-0/+8
| | | | Submitted by: MURAMATSU Atsushi <amura@ma3.seikyou.ne.jp>
* select() DKI is now in <sys/selinfo.h>.wollman2001-01-091-1/+1
|
* Use a consistent style and one much closer to the rest of /usr/srcobrien2001-01-0611-21/+21
|
* Don't needlessly indirect the APM softstate. It does nothing butnsayer2000-10-311-6/+2
| | | | obfuscate the code.
* Remove unneeded header.markm2000-06-253-3/+0
|
* Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofpeter2000-05-2711-11/+11
| | | | encoding the relative path.
* Added PC-98 supports.nyan2000-05-086-0/+30
| | | | Obtained from: FreeBSD(98) 4.0R-Rev01
* All the screen savers other than "apm" build on the Alpha. daemon.ko hasobrien2000-05-061-1/+4
| | | | been tested to work.
* Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.peter2000-05-0411-11/+11
| | | | | | | This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated.
* Add $FreeBSD$peter2000-05-012-0/+3
|
* More machdep/random.h -> sys/random.h fixes.bp2000-04-253-6/+3
|
* This is the 3rd stage of syscons code reorganization.yokota2000-01-153-3/+3
| | | | | | | | | | | | | | | - Split terminal emulation code from the main part of the driver so that we can have alternative terminal emulator modules if we like in the future. (We are not quite there yet, though.) - Put sysmouse related code in a separate file, thus, simplifying the main part of the driver. As some files are added to the source tree, you need to run config(8) before you compile a new kernel next time. You shouldn't see any functional change by this commit; this is only internal code reorganization.
* Add the apm_saver syscons screen saver module.nsayer1999-10-023-0/+101
| | | | | | | | | | | | | | apm_saver uses the apm_display() routine from the apm system to "suspend" the "display" part of the machine. This is beneficial for some laptops (or other machines with non-traditional displays) that choke on the 'green' saver's effect. Another way of looking at this is that it's the same as a screen saver that does an 'apm -d 0' to blank the display and an 'apm -d 1' to bring it back. One probably ought to use these commands to make sure the effect will be correct before using it unattended.
* Clean up and reorder.des1999-09-081-1/+11
|
* $Id$ -> $FreeBSD$peter1999-08-2821-21/+21
|
* The second phase of syscons reorganization.yokota1999-06-2211-288/+217
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* MFS: indent-assisted style cleanup.des1999-05-101-30/+27
|
* A little closer to style(9).des1999-05-081-58/+64
|
* Add missing copyright.jkh1999-05-041-0/+27
|
* Add "fire" screen saver.jkh1999-05-043-2/+114
| | | | Submitted by: Brad Forschinger <retch@flag.blackened.net>
* Centralize and reorganize a few macros.des1999-04-124-18/+19
|
* Followup to yokota's last commit:des1999-02-054-13/+14
| | | | | - va_mode_flags -> va_info.vi_flags - scanline width may be different from screen width
* Retrun EAGAIN if the current video mode is a graphics mode.yokota1999-01-173-6/+6
|
* Move the definition of set_origin from logo_saver.c to saver.h.des1999-01-162-4/+4
|
* The first stage of console driver reorganization: activate newyokota1999-01-1110-302/+240
| | | | | | | | | | | | | keyboard and video card drivers. Because of the changes, you are required to update your kernel configuration file now! The files in sys/dev/syscons are still i386-specific (but less so than before), and won't compile for alpha and PC98 yet. syscons still directly accesses the video card registers here and there; this will be rectified in the later stages.
* Use M_VGA_VG320 if M_VESA_CG800x600 is not available. It looks ugly indes1999-01-011-23/+31
| | | | | | low-res, but it works... Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
* Activate the rain screensaver.des1998-12-311-2/+2
|
* Here's one for the terminally melancholic amongst us.des1998-12-312-0/+146
|
* Eliminate "initialization from incompatible type" warning in SAVER_MODULEdes1998-12-311-4/+3
| | | | macro.
* Compile without warnings.des1998-12-312-5/+6
|
* Add -I${.CURDIR} since it #includes logo.c from the source dir and breakspeter1998-12-291-2/+2
| | | | | | when building with an obj dir. Reported by: Quite a few people.. :-/
* Activate the logo screensaver.des1998-12-281-2/+2
|
* One more for the road: Chuck the friendly floating daemon. Requiresdes1998-12-283-0/+520
| | | | VESA_800x600 to run.
* Save the palette in case syscons doesn't restore it properly.des1998-12-281-3/+6
| | | | Fix a minor overflow.
* Activate the warp screensaver.des1998-12-271-2/+2
|
* Finally give FreeBSD a graphical screensaver. It isn't much, but it works,des1998-12-272-0/+150
| | | | | | | and can serve as a template for further efforts. Consider this my (belated) Christmas present to the Project :) Requested by: jkh
* Simple update to make these work as kld and preload modules.peter1998-11-047-85/+56
|
* Sample initial set of kld-ified modules. Not all have been completelypeter1998-10-167-12/+15
| | | | | | | converted yet. These are more of a starting point. This is NOT connected to the parent Makefile. OK'ed by jkh (who is ever so patiently waiting)
* Fix the sreensavers so the work again with the new syscons & friends.sos1998-09-177-35/+46
| | | | Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
* Add VESA support to syscons.sos1998-09-157-39/+39
| | | | | | | | | | | | | | | | | | | | | | | | | 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
OpenPOWER on IntegriCloud