Date: Fri, 26 Nov 2010 21:26:13 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r215898 - stable/8/sys/amd64/acpica Message-ID: <201011262126.oAQLQDLI080314@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011262126.oAQLQDLI080314>