Date: Fri, 23 Oct 2009 18:57:52 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r198422 - head/sys/amd64/acpica Message-ID: <200910231857.n9NIvqpO069483@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jkim Date: Fri Oct 23 18:57:52 2009 New Revision: 198422 URL: http://svn.freebsd.org/changeset/base/198422 Log: Try hiding annoying text cursor after the video controller is reset. Modified: head/sys/amd64/acpica/acpi_wakecode.S Modified: head/sys/amd64/acpica/acpi_wakecode.S ============================================================================== --- head/sys/amd64/acpica/acpi_wakecode.S Fri Oct 23 18:53:21 2009 (r198421) +++ head/sys/amd64/acpica/acpi_wakecode.S Fri Oct 23 18:57:52 2009 (r198422) @@ -88,6 +88,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?200910231857.n9NIvqpO069483>