aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/syscons/star/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.Yoshihiro Takahashi2002-11-061-4/+0
| | | | Notes: svn path=/head/; revision=106497
* Drop <bsd.man.mk> support from <bsd.kmod.mk>.Ruslan Ermilov2002-01-111-1/+0
| | | | | | | Not objected to by: -current Notes: svn path=/head/; revision=89260
* Build modules from the main src/sys tree.Peter Wemm2001-08-091-2/+2
| | | | | | | | Tidy up some loose ends.. there were extra -I's being added to CFLAGS for no reason. Notes: svn path=/head/; revision=81325
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-2/+2
| | | | Notes: svn path=/head/; revision=70711
* Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofPeter Wemm2000-05-271-1/+1
| | | | | | | encoding the relative path. Notes: svn path=/head/; revision=60966
* Added PC-98 supports.Yoshihiro Takahashi2000-05-081-0/+4
| | | | | | | Obtained from: FreeBSD(98) 4.0R-Rev01 Notes: svn path=/head/; revision=60201
* Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.Peter Wemm2000-05-041-1/+1
| | | | | | | | | | 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. Notes: svn path=/head/; revision=59951
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Sample initial set of kld-ified modules. Not all have been completelyPeter Wemm1998-10-161-2/+2
| | | | | | | | | | 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) Notes: svn path=/head/; revision=40440
* Don't put a path to "sys" in ${CFLAGS} here. bsd.kmod.mk now handlesBruce Evans1998-02-011-2/+2
| | | | | | | this more generally. Notes: svn path=/head/; revision=32988
* Incorporated lots of fixes and suggestions from Bruce and changes toKazutaka YOKOTA1997-07-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | facilitate the new saver loading/unloading notification interface in syscons. daemon_saver: - M_NOWAIT was wrong, since NULL returns are not handled. Just use M_WAITOK. - use `ostype' instead of hard-coded "FreeBSD". Now there is no more hard-coded string! (But, who will run this screen saver on other OS?!) - put macros and data declarations in a consistent order. - -DDEAMON_ONLY and -DSHOW_HOSTNAME options added in the previous commit are removed. Options of this kind can go stale and no one notices because no one uses them. DEAMON_ONLY is just removed. SHOW_HOSTNAME is made default. snake_saver: - use `ostype' and `osrelease' as in the daemon saver. The string changes slightly - there was a hyphen after "FreeBSD"; now there is a space. (It is consistent with uname -a, like the daemon server already is.) all screen savers: - Use the new add_scrn_saver()/remove_scrn_saver() in syscons.c to declare loading/unloading of a screen saver. Removed reference to `current_saver' and the variable `old_saver' as they are not necessary anymore. - The blank, fade and green screen savers manipulate VGA registers. Module loading should fail for non-VGA cards. - `scrn_blanked' is consistently treated as a number/counter rather than boolean. - Some savers touch `scp->start' and `scp->end' to force entire screen update when stopping themselves. This is unnecessary now because syscons.c takes care of that. - cleared up many unused or unnecessary #include statements. - Removed -DLKM from Makefiles. YOU NEED TO RECOMPILE BOTH SCREEN SAVERS AND KERNEL AS OF THIS CHANGE. Notes: svn path=/head/; revision=27427
* Revert $FreeBSD$ back to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22982
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | 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
* delete unused variable BINDIR, use new variable MODLOAD/MODUNLOADWolfram Schneider1996-10-061-2/+1
| | | | Notes: svn path=/head/; revision=18778
* Once and for all: Never a ${DESTDIR} in ${BINDIR} !Poul-Henning Kamp1995-02-231-2/+2
| | | | Notes: svn path=/head/; revision=6671
* Next syscons update (given up on numbering :)Søren Schmidt1995-02-221-0/+10
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