mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 9f57061c35
			
		
	
	
		9f57061c35
		
	
	
	
	
		
			
			Copy the mechanism of hw/smbios/smbios-stub.c to implement an ACPI-stub instead, so that -acpitable can be later extended to ARM. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			677 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			677 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-$(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
 |