mirror of https://gitee.com/openkylin/qemu.git
hw: move VFIO and ivshmem to hw/misc/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
c0907c9e64
commit
ba25df88cc
|
@ -29,13 +29,3 @@ devices-dirs-$(CONFIG_SOFTMMU) += xen/
|
|||
devices-dirs-y += core/
|
||||
common-obj-y += $(devices-dirs-y)
|
||||
obj-y += $(devices-dirs-y)
|
||||
|
||||
ifeq ($(CONFIG_SOFTMMU),y)
|
||||
|
||||
# Inter-VM PCI shared memory & VFIO PCI device assignment
|
||||
ifeq ($(CONFIG_PCI), y)
|
||||
obj-$(CONFIG_KVM) += ivshmem.o
|
||||
obj-$(CONFIG_LINUX) += vfio_pci.o
|
||||
endif
|
||||
|
||||
endif
|
||||
|
|
|
@ -9,3 +9,9 @@ common-obj-$(CONFIG_PL310) += arm_l2x0.o
|
|||
common-obj-$(CONFIG_PUV3) += puv3_pm.o
|
||||
|
||||
common-obj-$(CONFIG_MACIO) += macio/
|
||||
|
||||
ifeq ($(CONFIG_PCI), y)
|
||||
obj-$(CONFIG_KVM) += ivshmem.o
|
||||
obj-$(CONFIG_LINUX) += vfio.o
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue