From owner-cvs-src-old@FreeBSD.ORG Wed Sep 9 09:55:02 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33EBD1065672 for ; Wed, 9 Sep 2009 09:55:02 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 002158FC0A for ; Wed, 9 Sep 2009 09:55:01 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n899t1Nu020690 for ; Wed, 9 Sep 2009 09:55:01 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n899t1Am020689 for cvs-src-old@freebsd.org; Wed, 9 Sep 2009 09:55:01 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <200909090955.n899t1Am020689@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Wed, 9 Sep 2009 09:50:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile src/share/man/man4 Makefile dpms.4 src/share/man/man4/man4.i386 dpms.4 src/sys/amd64/conf NOTES src/sys/conf files.amd64 files.i386 options.amd64 src/sys/dev/dpms dpms.c src/sys/dev/fb s3_pci.c vesa.c vesa.h vga.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Sep 2009 09:55:02 -0000 delphij 2009-09-09 09:50:31 UTC FreeBSD src repository Modified files: lib Makefile share/man/man4 Makefile sys/amd64/conf NOTES sys/conf files.amd64 files.i386 options.amd64 sys/dev/dpms dpms.c sys/dev/fb s3_pci.c vesa.c vesa.h vga.c sys/dev/syscons scvesactl.c sys/i386/conf NOTES sys/modules Makefile sys/modules/dpms Makefile sys/modules/vesa Makefile Added files: share/man/man4 dpms.4 Removed files: share/man/man4/man4.i386 dpms.4 sys/i386/include/pc vesa.h sys/i386/isa dpms.c vesa.c Log: SVN rev 197025 on 2009-09-09 09:50:31Z by delphij - Teach vesa(4) and dpms(4) about x86emu. [1] - Add vesa kernel options for amd64. - Connect libvgl library and splash kernel modules to amd64 build. - Connect manual page dpms(4) to amd64 build. - Remove old vesa/dpms files. Submitted by: paradox [1], swell k at gmail.com (with some minor tweaks) Revision Changes Path 1.238 +1 -0 src/lib/Makefile 1.461 +2 -0 src/share/man/man4/Makefile 1.1 +58 -0 src/share/man/man4/dpms.4 (new) 1.2 +0 -58 src/share/man/man4/man4.i386/dpms.4 (dead) 1.93 +6 -0 src/sys/amd64/conf/NOTES 1.141 +3 -0 src/sys/conf/files.amd64 1.627 +3 -3 src/sys/conf/files.i386 1.37 +3 -0 src/sys/conf/options.amd64 1.2 +91 -15 src/sys/dev/dpms/dpms.c 1.12 +1 -1 src/sys/dev/fb/s3_pci.c 1.2 +282 -230 src/sys/dev/fb/vesa.c 1.2 +5 -3 src/sys/dev/fb/vesa.h 1.39 +1 -1 src/sys/dev/fb/vga.c 1.27 +1 -1 src/sys/dev/syscons/scvesactl.c 1.1277 +1 -1 src/sys/i386/conf/NOTES 1.11 +0 -120 src/sys/i386/include/pc/vesa.h (dead) 1.2 +0 -230 src/sys/i386/isa/dpms.c (dead) 1.59 +0 -1696 src/sys/i386/isa/vesa.c (dead) 1.627 +3 -0 src/sys/modules/Makefile 1.2 +4 -4 src/sys/modules/dpms/Makefile 1.15 +7 -3 src/sys/modules/vesa/Makefile