From owner-cvs-src@FreeBSD.ORG Fri Oct 31 16:54:14 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5202F16A4CE; Fri, 31 Oct 2003 16:54:14 -0800 (PST) Received: from locore.org (ns01.locore.org [218.45.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77C9243FAF; Fri, 31 Oct 2003 16:54:12 -0800 (PST) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (ns01.locore.org [218.45.21.227]) hA10sA3G098123; Sat, 1 Nov 2003 09:54:10 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Date: Sat, 01 Nov 2003 09:54:09 +0900 (JST) Message-Id: <20031101.095409.35051619.iwasaki@jp.FreeBSD.org> To: njl@FreeBSD.org From: Mitsuru IWASAKI In-Reply-To: <200311010018.hA10ITLV034890@repoman.freebsd.org> References: <200311010018.hA10ITLV034890@repoman.freebsd.org> X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src/sys/i386/acpica Makefile acpi_machdep.c acpi_wakecode.S acpi_wakeup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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, 01 Nov 2003 00:54:14 -0000 > njl 2003/10/31 16:18:29 PST > > FreeBSD src repository > > Modified files: > sys/conf options > sys/i386/conf NOTES > sys/i386/acpica Makefile acpi_machdep.c acpi_wakecode.S > acpi_wakeup.c > Log: > Change the reset video option to be positive (hw.acpi.reset_video). > Requested by: jhb Thanks Nate, but + /* Re-initialize video BIOS if the reset_video tunable is set. */ + cmp $1,reset_video + je wakeup_16_gdt + lcall $0xc000,$3 this should be + cmp $0,reset_video + je wakeup_16_gdt right? Thanks