From owner-svn-src-stable@FreeBSD.ORG Fri Nov 26 21:26:13 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE0C6106566C; Fri, 26 Nov 2010 21:26:13 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DC9C08FC29; Fri, 26 Nov 2010 21:26:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oAQLQDDq080316; Fri, 26 Nov 2010 21:26:13 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oAQLQDLI080314; Fri, 26 Nov 2010 21:26:13 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201011262126.oAQLQDLI080314@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 26 Nov 2010 21:26:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r215898 - stable/8/sys/amd64/acpica X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Nov 2010 21:26:14 -0000 Author: jkim Date: Fri Nov 26 21:26:13 2010 New Revision: 215898 URL: http://svn.freebsd.org/changeset/base/215898 Log: MFC: r198422 Try hiding annoying text cursor after the video controller is reset. Modified: stable/8/sys/amd64/acpica/acpi_wakecode.S Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) Modified: stable/8/sys/amd64/acpica/acpi_wakecode.S ============================================================================== --- stable/8/sys/amd64/acpica/acpi_wakecode.S Fri Nov 26 21:22:49 2010 (r215897) +++ stable/8/sys/amd64/acpica/acpi_wakecode.S Fri Nov 26 21:26:13 2010 (r215898) @@ -86,6 +86,11 @@ wakeup_start: movb $0, reset_video - wakeup_start lcall $0xc000, $3 + /* When we reach here, int 0x10 should be ready. Hide cursor. */ + movb $0x01, %ah + movb $0x20, %ch + int $0x10 + /* Re-start in case the previous BIOS call clobbers them. */ jmp wakeup_start 1: