From a41e7b6aa9f12787f512e16f5b0ef19e1ca7f3b6 Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Mon, 3 Jan 2005 04:14:05 +0000 Subject: [PATCH] Catch up with the kernel and set any global variables we are using, in particular, enabling interpreter workarounds for bad ASL. MFC after: 1 day --- usr.sbin/acpi/acpidb/acpidb.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/usr.sbin/acpi/acpidb/acpidb.c b/usr.sbin/acpi/acpidb/acpidb.c index 6ad8e96cfeff..c53a265ee484 100644 --- a/usr.sbin/acpi/acpidb/acpidb.c +++ b/usr.sbin/acpi/acpidb/acpidb.c @@ -485,6 +485,12 @@ main(int argc, char *argv[]) AcpiDbgLevel = ACPI_DEBUG_DEFAULT; + /* + * Match kernel options for the interpreter. Global variable names + * can be found in acglobal.h. + */ + AcpiGbl_EnableInterpreterSlack = TRUE; + aml_simulation_regload("region.ini"); if (load_dsdt(argv[1]) == 0) { aml_simulation_regdump("region.dmp");