cvs commit: src/sys/conf options src/sys/i386/conf NOTES src/sys/i386/acpica Makefile acpi_machdep.c acpi_wakecode.S acpi_wakeup.c

Mitsuru IWASAKI iwasaki at jp.FreeBSD.org
Fri Oct 31 16:54:14 PST 2003


> njl         2003/10/31 16:18:29 PST
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/conf             options 
>     sys/i386/conf        NOTES 
>     sys/i386/acpica      Makefile acpi_machdep.c acpi_wakecode.S 
>                          acpi_wakeup.c 
>   Log:
>   Change the reset video option to be positive (hw.acpi.reset_video).
>   Requested by:   jhb

Thanks Nate, but

+	/* Re-initialize video BIOS if the reset_video tunable is set. */
+	cmp	$1,reset_video
+	je	wakeup_16_gdt
+	lcall	$0xc000,$3

this should be

+	cmp	$0,reset_video
+	je	wakeup_16_gdt

right?

Thanks


More information about the cvs-src mailing list