aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/syscons/apm
Commit message (Collapse)AuthorAgeFilesLines
* Remove apm screen saver.Warner Losh2020-10-081-8/+0
| | | | | | | | APM BIOS support is about to be removed. Remove the apm screen saver and its module. They are about to be irrelevant. Notes: svn path=/head/; revision=366545
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* 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-092-94/+2
| | | | | | | | Tidy up some loose ends.. there were extra -I's being added to CFLAGS for no reason. Notes: svn path=/head/; revision=81325
* Added necessary include for pc98.Yoshihiro Takahashi2001-01-251-0/+1
| | | | Notes: svn path=/head/; revision=71619
* Added PC-98 apm support.Yoshihiro Takahashi2001-01-222-0/+8
| | | | | | | Submitted by: MURAMATSU Atsushi <amura@ma3.seikyou.ne.jp> Notes: svn path=/head/; revision=71370
* select() DKI is now in <sys/selinfo.h>.Garrett Wollman2001-01-091-1/+1
| | | | Notes: svn path=/head/; revision=70834
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-1/+1
| | | | Notes: svn path=/head/; revision=70711
* Don't needlessly indirect the APM softstate. It does nothing butNick Sayer2000-10-311-6/+2
| | | | | | | obfuscate the code. Notes: svn path=/head/; revision=68103
* 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
* 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
* Add the apm_saver syscons screen saver module.Nick Sayer1999-10-022-0/+100
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. Notes: svn path=/head/; revision=51851