From owner-cvs-src@FreeBSD.ORG Sat Aug 23 21:04:25 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B2C3106567C; Sat, 23 Aug 2008 21:04:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 76A298FC22; Sat, 23 Aug 2008 21:04:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m7NL4P29066580; Sat, 23 Aug 2008 21:04:25 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m7NL4PSH066579; Sat, 23 Aug 2008 21:04:25 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200808232104.m7NL4PSH066579@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Sat, 23 Aug 2008 21:00:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4/man4.i386 Makefile dpms.4 src/sys/conf files.i386 src/sys/i386/conf NOTES src/sys/i386/isa dpms.c src/sys/modules Makefile src/sys/modules/dpms Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Aug 2008 21:04:25 -0000 jhb 2008-08-23 21:00:40 UTC FreeBSD src repository Modified files: share/man/man4/man4.i386 Makefile sys/conf files.i386 sys/i386/conf NOTES sys/modules Makefile Added files: share/man/man4/man4.i386 dpms.4 sys/i386/isa dpms.c sys/modules/dpms Makefile Log: SVN rev 182081 on 2008-08-23 21:00:40Z by jhb Add a very simple dpms(4) driver that uses the VESA BIOS DPMS calls to turn off the external display during suspend and restore it to its original state on resume. MFC after: 2 weeks Revision Changes Path 1.192 +1 -0 src/share/man/man4/man4.i386/Makefile 1.1 +58 -0 src/share/man/man4/man4.i386/dpms.4 (new) 1.605 +1 -0 src/sys/conf/files.i386 1.1262 +2 -0 src/sys/i386/conf/NOTES 1.1 +230 -0 src/sys/i386/isa/dpms.c (new) 1.585 +2 -0 src/sys/modules/Makefile 1.1 +9 -0 src/sys/modules/dpms/Makefile (new)