diff options
author | Saket Sinha | 2015-08-22 12:20:57 +0530 |
---|---|---|
committer | Simon Glass | 2015-08-26 07:54:14 -0700 |
commit | bccdf1de75708fe4138a00cc05d8fde8b35476ac (patch) | |
tree | 3fd13e72917559ca0074b79905721683862ae0d7 /arch/x86/cpu/qemu/Makefile | |
parent | e94019ede750f2807b5a211ba39beb05bba5714d (diff) |
x86: Add DSDT table for supporting ACPI on QEMU
The DSDT table contains a bytecode that is executed by a driver in the kernel.
Signed-off-by: Saket Sinha <saket.sinha89@gmail.com>
Tested with QEMU '-M q35'
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/qemu/Makefile')
-rw-r--r-- | arch/x86/cpu/qemu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/cpu/qemu/Makefile b/arch/x86/cpu/qemu/Makefile index 8c3884cecda..1c00d1de077 100644 --- a/arch/x86/cpu/qemu/Makefile +++ b/arch/x86/cpu/qemu/Makefile @@ -8,5 +8,5 @@ ifndef CONFIG_EFI_STUB obj-y += car.o dram.o endif obj-y += qemu.o -obj-$(CONFIG_GENERATE_ACPI_TABLE) += acpi.o +obj-$(CONFIG_GENERATE_ACPI_TABLE) += acpi.o dsdt.o obj-$(CONFIG_PCI) += pci.o |