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

Jung-uk Kim jkim at FreeBSD.org
Fri Nov 26 21:26:14 UTC 2010


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:


More information about the svn-src-stable-8 mailing list