Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -125,9 +125,12 @@ void acpi_ut_subsystem_shutdown(void)
	acpi_gbl_startup_flags = 0;
	ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n"));

#ifndef ACPI_ASL_COMPILER

	/* Close the acpi_event Handling */

	acpi_ev_terminate();
#endif

	/* Close the Namespace */

+4 −0
Original line number Diff line number Diff line
@@ -49,6 +49,7 @@
#define _COMPONENT          ACPI_UTILITIES
ACPI_MODULE_NAME("utxface")

#ifndef ACPI_ASL_COMPILER
/*******************************************************************************
 *
 * FUNCTION:    acpi_initialize_subsystem
@@ -292,6 +293,7 @@ acpi_status acpi_initialize_objects(u32 flags)

ACPI_EXPORT_SYMBOL(acpi_initialize_objects)

#endif
/*******************************************************************************
 *
 * FUNCTION:    acpi_terminate
@@ -335,6 +337,7 @@ acpi_status acpi_terminate(void)
}

ACPI_EXPORT_SYMBOL(acpi_terminate)
#ifndef ACPI_ASL_COMPILER
#ifdef ACPI_FUTURE_USAGE
/*******************************************************************************
 *
@@ -490,3 +493,4 @@ acpi_status acpi_purge_cached_objects(void)
}

ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects)
#endif