From: Al Stone ahs3@redhat.com
The prior version of this created a "dummy" platform; I did not think that specific enough so the platform is now called "loadtest".
What this patch to acpi-asl does is define only the ACPI tables that are absolutely required to determine if ACPI will initialize properly during kernel boot. These tables contain essentially *no* configuration information and should not.
Changes for v2: -- rename "dummy" to "loadtest" -- reduce tables to bare minimum (including removing the RSDT which has been deprecated)
Al Stone (1): ASL : loadtest.acpi : add in a minimal table set that can be used for testing of core ACPI table loading
platforms/loadtest.acpi/.gitignore | 3 + platforms/loadtest.acpi/dsdt.asl | 17 +++ platforms/loadtest.acpi/facp.asl | 167 ++++++++++++++++++++++++++++++ platforms/loadtest.acpi/facs.asl | 21 ++++ platforms/loadtest.acpi/loadtest.manifest | 13 +++ platforms/loadtest.acpi/rsdp.asl | 17 +++ platforms/loadtest.acpi/xsdt.asl | 23 ++++ 7 files changed, 261 insertions(+) create mode 100644 platforms/loadtest.acpi/.gitignore create mode 100644 platforms/loadtest.acpi/dsdt.asl create mode 100644 platforms/loadtest.acpi/facp.asl create mode 100644 platforms/loadtest.acpi/facs.asl create mode 100644 platforms/loadtest.acpi/loadtest.manifest create mode 100644 platforms/loadtest.acpi/rsdp.asl create mode 100644 platforms/loadtest.acpi/xsdt.asl