diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2005-01-03 04:14:05 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2005-01-03 04:14:05 +0000 |
| commit | a41e7b6aa9f12787f512e16f5b0ef19e1ca7f3b6 (patch) | |
| tree | c9e1b2102642e2f4bb22e3c8abbfb4634b5f0008 | |
| parent | 1d1b40fed8e4db18ec08c0d83b6a0b7c7d930895 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/acpi/acpidb/acpidb.c | 6 |
1 files changed, 6 insertions, 0 deletions
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"); |
