diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2020-04-29 15:59:50 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2020-05-04 10:25:02 -0400 |
| commit | 17d08ba4659dc66a51a7eab83aeafcc9765d0a87 (patch) | |
| tree | 9a928a956850c3c2f8246fc2634c0700bb980df3 /hw/acpi/Makefile.objs | |
| parent | 0f8d656b3b8ef31ebfbd4a24003d9a58d987a605 (diff) | |
| download | focaccia-qemu-17d08ba4659dc66a51a7eab83aeafcc9765d0a87.tar.gz focaccia-qemu-17d08ba4659dc66a51a7eab83aeafcc9765d0a87.zip | |
acpi: add aml builder stubs
Needed when moving aml builder code to devices. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Message-Id: <20200429140003.7336-3-kraxel@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/acpi/Makefile.objs')
| -rw-r--r-- | hw/acpi/Makefile.objs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/acpi/Makefile.objs b/hw/acpi/Makefile.objs index 777da07f4d..cab9bcd457 100644 --- a/hw/acpi/Makefile.objs +++ b/hw/acpi/Makefile.objs @@ -20,6 +20,6 @@ common-obj-$(CONFIG_TPM) += tpm.o common-obj-$(CONFIG_IPMI) += ipmi.o common-obj-$(call lnot,$(CONFIG_IPMI)) += ipmi-stub.o else -common-obj-y += acpi-stub.o +common-obj-y += acpi-stub.o aml-build-stub.o endif -common-obj-$(CONFIG_ALL) += acpi-stub.o acpi-x86-stub.o ipmi-stub.o +common-obj-$(CONFIG_ALL) += acpi-stub.o aml-build-stub.o acpi-x86-stub.o ipmi-stub.o |