d03637bcfb
This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, an ACPI notify event is sent to the guest The user interface is a simple device with one parameter: - guid (string, must be "auto" or in UUID format xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx) Signed-off-by: Ben Warren <ben@skyportsystems.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Tested-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
21 lines
724 B
Makefile
21 lines
724 B
Makefile
ifeq ($(CONFIG_ACPI),y)
|
|
common-obj-$(CONFIG_ACPI_X86) += core.o piix4.o pcihp.o
|
|
common-obj-$(CONFIG_ACPI_X86_ICH) += ich9.o tco.o
|
|
common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu_hotplug.o
|
|
common-obj-$(CONFIG_ACPI_MEMORY_HOTPLUG) += memory_hotplug.o
|
|
common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu.o
|
|
common-obj-$(CONFIG_ACPI_NVDIMM) += nvdimm.o
|
|
common-obj-$(CONFIG_ACPI_VMGENID) += vmgenid.o
|
|
common-obj-$(call lnot,$(CONFIG_ACPI_X86)) += acpi-stub.o
|
|
|
|
common-obj-y += acpi_interface.o
|
|
common-obj-y += bios-linker-loader.o
|
|
common-obj-y += aml-build.o
|
|
|
|
common-obj-$(CONFIG_IPMI) += ipmi.o
|
|
common-obj-$(call lnot,$(CONFIG_IPMI)) += ipmi-stub.o
|
|
else
|
|
common-obj-y += acpi-stub.o
|
|
endif
|
|
common-obj-$(CONFIG_ALL) += acpi-stub.o ipmi-stub.o
|