Iain Hibbert wrote:
On Sun, 13 Apr 2008, Jared D. McNeill wrote:Greg A. Woods wrote:It also reports the following new lines related to ACPI:ACPI: APIC @ 0x0x7fee6fc0/0x0074 (v001 IntelR AWRDACPI 0x42302E31 AWRD 0x00000000)This is standard output from ACPICA, I believe we used to hide it by default. I'll look into it.I'm seeing similar also but also a bunch of AE_NOT_EXIST messages and a panic before boot; dmesg below and dsdt file (should you need it) at
Can you try the following patch for the AE_NOT_EXIST issue:
Index: acpi.c
===================================================================
RCS file: /cvsroot/src/sys/dev/acpi/acpi.c,v
retrieving revision 1.113
diff -u -r1.113 acpi.c
--- acpi.c 27 Mar 2008 02:51:26 -0000 1.113
+++ acpi.c 13 Apr 2008 18:26:23 -0000
@@ -210,7 +210,7 @@
acpi_osd_debugger();
#endif
- AcpiGbl_AllMethodsSerialized = FALSE;
+ AcpiGbl_AllMethodsSerialized = TRUE;
AcpiGbl_EnableInterpreterSlack = TRUE;
rv = AcpiInitializeSubsystem();
Cheers,
Jared