aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/syscons
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade the kbdio rutines to provide queued kbd & mouse events.Søren Schmidt1997-01-152-4/+36
| | | | | | | | | Minor other updates to syscons by me. Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp> Notes: svn path=/head/; revision=21731
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-1412-12/+12
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Make snake 3.0-CURRENT here.Jordan K. Hubbard1996-11-111-2/+2
| | | | | | | There's gotta be a better way of syncronizing our release numbers. :-) Notes: svn path=/head/; revision=19643
* delete unused variable BINDIR, use new variable MODLOAD/MODUNLOADWolfram Schneider1996-10-065-10/+5
| | | | Notes: svn path=/head/; revision=18778
* add forgotten $Id$Wolfram Schneider1996-09-221-0/+2
| | | | Notes: svn path=/head/; revision=18471
* Added or restored #include of <machine/md_var.h>. Some declarationsBruce Evans1996-07-012-4/+10
| | | | | | | moved from <machine/cpufunc.h> to better places. Notes: svn path=/head/; revision=16879
* Delete obnoxious uprintf()s in load/unload procedures.Garrett Wollman1995-11-295-15/+5
| | | | Notes: svn path=/head/; revision=12536
* Changed the first (name) arg of MOD_DEV(), MOD_EXEC() and MOD_MISC()Bruce Evans1995-11-145-21/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from a string to an identifier so that it can be used to generate declarations and strings. It's much easier to stringize an identifier than to identifize a string. A uniform naming scheme must be used for the automatically generated things to apply. This is a feature. Used the module identifer to generate prototypes for the module load, unload and stat functions. Removed the few prototypes for these that already existed. Used the module identifier to generate a unique struct tag in MOD_DEV(). This should probably be done for all the MOD_*() macros. Moved the trailing semicolon from the MOD_*() macro definitions to the macro invocations that didn't already (bogusly) have it. Staticized the module load and unload functions. Added function return types for the module load, unload and stat functions. lkm/ibcs2/ibcs2.c: Included <sys/sysproto.h> to get everything prototyped. Cleaned up #includes. lkm/ibcs2/ipfw.c: Cleaned up #includes. lkm/linux/linux.c: The module name had to change from "linux_emulator" to "linux_mod" to be automatically generated. Cleaned up #includes. lkm/syscons/*/*_saver.c: Completed delcarations of function pointers. sys/i386/isa/atapi.c: The module name had to change from "atapi" to "atapi_mod" to be automatically generated. sys/i386/isa/wcd.c: Used the fixed MOD_DEV(). This module has two devices and expanded the macro in the source instead of fixing it. The module names had to change from "wcd" and "rwcd" to "wcd_mod" and "rwcd_mod" to be automatically generated. sys/pccard/pcic.c: The module name had to change from "pcic" to "pcic_mod" to be automatically generated. Notes: svn path=/head/; revision=12276
* Replaced nosys() by lkm_nullcmd(). Always call lkm load/unload/statBruce Evans1995-11-135-10/+15
| | | | | | | | functions instead of skipping the call if the function is nosys(). nosys() returned the wrong value as well as having the wrong type. Notes: svn path=/head/; revision=12250
* Do a pass over the broken LKM's and update them to use the "new"Peter Wemm1995-10-285-25/+25
| | | | | | | | | | | | | | | | | | convention of having their entry point named "<modname>_mod"". Symorder is enforcing this when the current bsd.kmod.mk is installed. I've not tested all these, but at least they all compile now. Reattach them to the makefile. Note that the change that I made to symorder needs to be compiled and installed before any LKM's will work - the last version was corrupting the relocation tables. A "make world" will to this, but if you manually run a make on the lkm's you'll need to take care of it by hand. Notes: svn path=/head/; revision=11857
* Update the version in the snake saver...Peter Wemm1995-09-041-2/+2
| | | | | | | | Something similar needs to happen to RELENG_2_1_0 - or better yet, this should become dynamic... Notes: svn path=/head/; revision=10555
* Remove trailing whitespace.Rodney W. Grimes1995-05-305-26/+26
| | | | Notes: svn path=/head/; revision=8871
* Changed relase number in snake_saver.c from 2.1 to 2.0.5Søren Schmidt1995-05-161-2/+2
| | | | Notes: svn path=/head/; revision=8560
* Fix declaration of palette[] so that fade saver doesn't cause panics.Bruce Evans1995-05-141-1/+1
| | | | Notes: svn path=/head/; revision=8513
* Update to new screen update method.Søren Schmidt1995-03-302-4/+6
| | | | Notes: svn path=/head/; revision=7500
* Make in lkm/syscons fails due to missing include for apm stuff.Nate Williams1995-03-031-0/+1
| | | | | | | Submitted by: John Capo <jc@irbs.com> and John Hay <jhay@mikom.csir.co.za> Notes: svn path=/head/; revision=6859
* Once and for all: Never a ${DESTDIR} in ${BINDIR} !Poul-Henning Kamp1995-02-235-10/+10
| | | | Notes: svn path=/head/; revision=6671
* Next syscons update (given up on numbering :)Søren Schmidt1995-02-2212-0/+565
Removed screensavers from syscons, they are now LKM's. This makes it possible to do some really "interesting" screensavers... Fixed bug that sometimes caused garbage to appear when leaving "scroll-lock" history. Reformattet indentation, it got too deep for a normal 80 pos screen. Split up in syscons.c & syscons.h for use with the saver-lkm's. Temporarily removed -s option from vidcontrol, savers should now be loaded with modload. Notes: svn path=/head/; revision=6628