diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-11-17 18:45:41 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-11-19 08:48:34 -0500 |
commit | 4373afaef34a76733638edc4e98f355b13c52f10 (patch) | |
tree | 15f3e814a59457bd03d89711ddc4b36d0a5fe8ef /src/fw/ssdt-proc.hex | |
parent | b0d3cc36667b68e41ac816caa22802922400e5af (diff) | |
download | seabios-4373afaef34a76733638edc4e98f355b13c52f10.tar.gz |
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 <kevin@koconnor.net>
Diffstat (limited to 'src/fw/ssdt-proc.hex')
-rw-r--r-- | src/fw/ssdt-proc.hex | 35 |
1 files changed, 35 insertions, 0 deletions
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 +}; |