Commit e20a679b authored by Bob Moore's avatar Bob Moore Committed by Len Brown

ACPICA: Support for iASL - multiple files and wildcards

Implemented support to allow multiple files to be
compiled/disassembled in a single invocation. This includes
command line wildcard support for both the Windows and Unix
versions of the compiler. This feature simplifies the disassembly
and compilation of multiple ACPI tables in a single directory.
Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarAlexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 6deb65dd
...@@ -125,9 +125,12 @@ void acpi_ut_subsystem_shutdown(void) ...@@ -125,9 +125,12 @@ void acpi_ut_subsystem_shutdown(void)
acpi_gbl_startup_flags = 0; acpi_gbl_startup_flags = 0;
ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n")); ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n"));
#ifndef ACPI_ASL_COMPILER
/* Close the acpi_event Handling */ /* Close the acpi_event Handling */
acpi_ev_terminate(); acpi_ev_terminate();
#endif
/* Close the Namespace */ /* Close the Namespace */
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
#define _COMPONENT ACPI_UTILITIES #define _COMPONENT ACPI_UTILITIES
ACPI_MODULE_NAME("utxface") ACPI_MODULE_NAME("utxface")
#ifndef ACPI_ASL_COMPILER
/******************************************************************************* /*******************************************************************************
* *
* FUNCTION: acpi_initialize_subsystem * FUNCTION: acpi_initialize_subsystem
...@@ -292,6 +293,7 @@ acpi_status acpi_initialize_objects(u32 flags) ...@@ -292,6 +293,7 @@ acpi_status acpi_initialize_objects(u32 flags)
ACPI_EXPORT_SYMBOL(acpi_initialize_objects) ACPI_EXPORT_SYMBOL(acpi_initialize_objects)
#endif
/******************************************************************************* /*******************************************************************************
* *
* FUNCTION: acpi_terminate * FUNCTION: acpi_terminate
...@@ -335,6 +337,7 @@ acpi_status acpi_terminate(void) ...@@ -335,6 +337,7 @@ acpi_status acpi_terminate(void)
} }
ACPI_EXPORT_SYMBOL(acpi_terminate) ACPI_EXPORT_SYMBOL(acpi_terminate)
#ifndef ACPI_ASL_COMPILER
#ifdef ACPI_FUTURE_USAGE #ifdef ACPI_FUTURE_USAGE
/******************************************************************************* /*******************************************************************************
* *
...@@ -490,3 +493,4 @@ acpi_status acpi_purge_cached_objects(void) ...@@ -490,3 +493,4 @@ acpi_status acpi_purge_cached_objects(void)
} }
ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects) ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects)
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment