mirror of
https://github.com/acpica/acpica/
synced 2025-03-16 19:22:55 +03:00
iASL: Add * option to generate all template files.
Add * as a synonym for ALL.
This commit is contained in:
parent
67c2cd6f79
commit
b7fb31cc1d
@ -220,7 +220,7 @@ Options (
|
||||
printf (" -ls Create combined source file (expanded includes) (*.src)\n");
|
||||
|
||||
printf ("\nACPI Data Tables:\n");
|
||||
printf (" -T <Sig> Create table template file for <Sig> (or \"ALL\")\n");
|
||||
printf (" -T <Sig>|ALL|* Create table template file(s) for <Sig>\n");
|
||||
printf (" -vt Create verbose templates (full disassembly)\n");
|
||||
|
||||
printf ("\nAML Disassembler:\n");
|
||||
|
@ -193,7 +193,8 @@ DtCreateTemplates (
|
||||
|
||||
/* Create all known templates if requested */
|
||||
|
||||
if (!ACPI_STRNCMP (Signature, "ALL", 3))
|
||||
if (!ACPI_STRNCMP (Signature, "ALL", 3) ||
|
||||
!ACPI_STRCMP (Signature, "*"))
|
||||
{
|
||||
Status = DtCreateAllTemplates ();
|
||||
return (Status);
|
||||
|
Loading…
x
Reference in New Issue
Block a user