diff options
author | jkim <jkim@FreeBSD.org> | 2014-11-10 21:30:04 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2014-11-10 21:30:04 +0000 |
commit | c289b811b42daf9e7ef5c37a35e951d01c23715a (patch) | |
tree | b4bd3052883fca1145eaa389311d46371584f6d9 /source/compiler/aslmain.c | |
parent | 4a5720e5f30ea6a8d31e75f94046c76ace845126 (diff) | |
download | FreeBSD-src-c289b811b42daf9e7ef5c37a35e951d01c23715a.zip FreeBSD-src-c289b811b42daf9e7ef5c37a35e951d01c23715a.tar.gz |
Import ACPICA 20141107.
Diffstat (limited to 'source/compiler/aslmain.c')
-rw-r--r-- | source/compiler/aslmain.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/compiler/aslmain.c b/source/compiler/aslmain.c index 1ef7b1c..9738fb5 100644 --- a/source/compiler/aslmain.c +++ b/source/compiler/aslmain.c @@ -187,13 +187,17 @@ Usage ( ACPI_OPTION ("-db", "Do not translate Buffers to Resource Templates"); ACPI_OPTION ("-dc <f1 f2 ...>", "Disassemble AML and immediately compile it"); ACPI_OPTION ("", " (Obtain DSDT from current system if no input file)"); + ACPI_OPTION ("-dl", "Emit legacy ASL code only (no C-style operators)"); ACPI_OPTION ("-e <f1 f2 ...>", "Include ACPI table(s) for external symbol resolution"); ACPI_OPTION ("-fe <file>", "Specify external symbol declaration file"); ACPI_OPTION ("-in", "Ignore NoOp opcodes"); ACPI_OPTION ("-vt", "Dump binary table data in hex format within output file"); printf ("\nDebug Options:\n"); - ACPI_OPTION ("-bf -bt", "Create debug file (full or parse tree only) (*.txt)"); + ACPI_OPTION ("-bf", "Create debug file (full output) (*.txt)"); + ACPI_OPTION ("-bs", "Create debug file (parse tree only) (*.txt)"); + ACPI_OPTION ("-bp <depth>", "Prune ASL parse tree"); + ACPI_OPTION ("-bt <type>", "Object type to be pruned from the parse tree"); ACPI_OPTION ("-f", "Ignore errors, force creation of AML output file(s)"); ACPI_OPTION ("-m <size>", "Set internal line buffer size (in Kbytes)"); ACPI_OPTION ("-n", "Parse only, no output generation"); |