svn commit: r215898 - stable/8/sys/amd64/acpica

[ Available lists | Index of svn-src-stable-8 | Month of Nov 2010 | Week of 26 Nov 2010 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Jung-uk Kim <jkim@FreeBSD.org>
Date
26 Nov 2010 21:26:13
Subject
svn commit: r215898 - stable/8/sys/amd64/acpica
Message-ID
201011262126.oAQLQDLI080314@svn.freebsd.org


[ Hide this part ]
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:


Elapsed time: 0.107 seconds