diff options
Diffstat (limited to 'source/tools/acpiexec/aemain.c')
-rw-r--r-- | source/tools/acpiexec/aemain.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source/tools/acpiexec/aemain.c b/source/tools/acpiexec/aemain.c index e8ae348cdf9b4..58e639fae8dd3 100644 --- a/source/tools/acpiexec/aemain.c +++ b/source/tools/acpiexec/aemain.c @@ -266,6 +266,7 @@ usage ( ACPI_OPTION ("-ef", "Enable display of final memory statistics"); ACPI_OPTION ("-ei", "Enable additional tests for ACPICA interfaces"); ACPI_OPTION ("-el", "Enable loading of additional test tables"); + ACPI_OPTION ("-eo", "Enable object evaluation log"); ACPI_OPTION ("-es", "Enable Interpreter Slack Mode"); ACPI_OPTION ("-et", "Enable debug semaphore timeout"); printf ("\n"); @@ -406,6 +407,12 @@ AeDoOptions ( AcpiGbl_LoadTestTables = TRUE; break; + case 'o': + + AcpiDbgLevel |= ACPI_LV_EVALUATION; + AcpiGbl_DbConsoleDebugLevel |= ACPI_LV_EVALUATION; + break; + case 's': AcpiGbl_EnableInterpreterSlack = TRUE; |