From 4373afaef34a76733638edc4e98f355b13c52f10 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 17 Nov 2015 18:45:41 -0500 Subject: acpi: Don't build SSDT files on every build; store them in git The SSDT files are rarely modified - recent QEMU versions don't use them at all and adding features to them in SeaBIOS has been deprecated. It no longer makes sense to generate them on every build. The content will remain (for use on old machine types in QEMU) in static files committed to the SeaBIOS git repo. If the contents do need to be generated a new build target (make iasl) is available. Signed-off-by: Kevin O'Connor --- src/fw/ssdt-proc.hex | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/fw/ssdt-proc.hex (limited to 'src/fw/ssdt-proc.hex') diff --git a/src/fw/ssdt-proc.hex b/src/fw/ssdt-proc.hex new file mode 100644 index 00000000..b6a57784 --- /dev/null +++ b/src/fw/ssdt-proc.hex @@ -0,0 +1,35 @@ +/* DO NOT EDIT! This is an autogenerated file. See scripts/acpi_extract.py. */ +static unsigned char ssdt_proc_name[] = { + 0x28 +}; + +static unsigned char ssdp_proc_aml[] = { + 0x53, 0x53, 0x44, 0x54, 0x78, 0x00, 0x00, 0x00, + 0x01, 0xbb, 0x42, 0x58, 0x50, 0x43, 0x00, 0x00, + 0x42, 0x58, 0x53, 0x53, 0x44, 0x54, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x49, 0x4e, 0x54, 0x4c, + 0x18, 0x08, 0x15, 0x20, 0x5b, 0x83, 0x42, 0x05, + 0x43, 0x50, 0x41, 0x41, 0xaa, 0x10, 0xb0, 0x00, + 0x00, 0x06, 0x08, 0x49, 0x44, 0x5f, 0x5f, 0x0a, + 0xaa, 0x08, 0x5f, 0x48, 0x49, 0x44, 0x0d, 0x41, + 0x43, 0x50, 0x49, 0x30, 0x30, 0x30, 0x37, 0x00, + 0x14, 0x0f, 0x5f, 0x4d, 0x41, 0x54, 0x00, 0xa4, + 0x43, 0x50, 0x4d, 0x41, 0x49, 0x44, 0x5f, 0x5f, + 0x14, 0x0f, 0x5f, 0x53, 0x54, 0x41, 0x00, 0xa4, + 0x43, 0x50, 0x53, 0x54, 0x49, 0x44, 0x5f, 0x5f, + 0x14, 0x0f, 0x5f, 0x45, 0x4a, 0x30, 0x01, 0x43, + 0x50, 0x45, 0x4a, 0x49, 0x44, 0x5f, 0x5f, 0x68, + +}; + +static unsigned char ssdt_proc_id[] = { + 0x38 +}; + +static unsigned char ssdt_proc_end[] = { + 0x78 +}; + +static unsigned char ssdt_proc_start[] = { + 0x24 +}; -- cgit