From owner-cvs-src-old@FreeBSD.ORG Mon Sep 21 08:18:21 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 87BFA106568B for ; Mon, 21 Sep 2009 08:18:21 +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 72AAE8FC0A for ; Mon, 21 Sep 2009 08:18:21 +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 n8L8ILYX011639 for ; Mon, 21 Sep 2009 08:18:21 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n8L8IL5q011638 for cvs-src-old@freebsd.org; Mon, 21 Sep 2009 08:18:21 GMT (envelope-from delphij@repoman.freebsd.org) Message-Id: <200909210818.n8L8IL5q011638@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to delphij@repoman.freebsd.org using -f From: Xin LI Date: Mon, 21 Sep 2009 08:17:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES files options src/sys/contrib/x86emu x86emu.c src/sys/dev/dpms dpms.c src/sys/dev/fb vesa.c src/sys/dev/x86bios x86bios.c x86bios.h x86bios_alloc.c src/sys/modules Makefile src/sys/modules/x86bios ... 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: Mon, 21 Sep 2009 08:18:21 -0000 delphij 2009-09-21 08:17:57 UTC FreeBSD src repository Modified files: sys/conf NOTES files options sys/contrib/x86emu x86emu.c sys/dev/dpms dpms.c sys/dev/fb vesa.c sys/modules Makefile Added files: sys/dev/x86bios x86bios.c x86bios.h x86bios_alloc.c sys/modules/x86bios Makefile Removed files: sys/modules/x86emu Makefile Log: SVN rev 197383 on 2009-09-21 08:17:57Z by delphij Collapase interrupt supporting functions to a new module, and switch from x86emu to this new module. This changeset also brings a fix for bugs introduced with the initial x86emu commit, which prevents the user from using some display mode or cause instant reboots during mode switch. Submitted by: paradox Revision Changes Path 1.1556 +1 -1 src/sys/conf/NOTES 1.1467 +4 -2 src/sys/conf/files 1.692 +1 -1 src/sys/conf/options 1.3 +0 -33 src/sys/contrib/x86emu/x86emu.c 1.3 +12 -87 src/sys/dev/dpms/dpms.c 1.4 +192 -223 src/sys/dev/fb/vesa.c 1.1 +218 -0 src/sys/dev/x86bios/x86bios.c (new) 1.1 +138 -0 src/sys/dev/x86bios/x86bios.h (new) 1.1 +81 -0 src/sys/dev/x86bios/x86bios_alloc.c (new) 1.629 +1 -1 src/sys/modules/Makefile 1.1 +10 -0 src/sys/modules/x86bios/Makefile (new) 1.2 +0 -8 src/sys/modules/x86emu/Makefile (dead)