9e5c2056d1
Instead of hard-coding all config switches in the config file default-configs/s390x-softmmu.mak, let's use the new Kconfig files to express the necessary dependencies: The S390_CCW_VIRTIO config switch for the "s390-ccw-virtio" machine now selects all non-optional devices. And since we already have the VIRTIO_PCI and VIRTIO_MMIO config switches for the other two virtio transports, this patch also introduces a new config switch VIRTIO_CCW for the third, s390x-specific virtio transport, so that all three virtio transports are now handled in the same way. Signed-off-by: Thomas Huth <thuth@redhat.com> Acked-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
obj-y += s390-virtio-hcall.o
|
|
obj-y += sclp.o
|
|
obj-y += event-facility.o
|
|
obj-y += sclpquiesce.o
|
|
obj-y += sclpcpu.o
|
|
obj-y += ipl.o
|
|
obj-y += css.o
|
|
obj-$(CONFIG_S390_CCW_VIRTIO) += s390-virtio-ccw.o
|
|
obj-$(CONFIG_TERMINAL3270) += 3270-ccw.o
|
|
ifeq ($(CONFIG_VIRTIO_CCW),y)
|
|
obj-y += virtio-ccw.o
|
|
obj-$(CONFIG_VIRTIO_SERIAL) += virtio-ccw-serial.o
|
|
obj-$(CONFIG_VIRTIO_BALLOON) += virtio-ccw-balloon.o
|
|
obj-$(CONFIG_VIRTIO_SCSI) += virtio-ccw-scsi.o
|
|
obj-$(CONFIG_VIRTIO_RNG) += virtio-ccw-rng.o
|
|
obj-$(CONFIG_VIRTIO_CRYPTO) += virtio-ccw-crypto.o
|
|
obj-$(CONFIG_VIRTIO_GPU) += virtio-ccw-gpu.o
|
|
obj-$(CONFIG_VIRTIO_INPUT) += virtio-ccw-input.o
|
|
obj-$(CONFIG_VIRTIO_NET) += virtio-ccw-net.o
|
|
obj-$(CONFIG_VIRTIO_BLK) += virtio-ccw-blk.o
|
|
obj-$(call land,$(CONFIG_VIRTIO_9P),$(CONFIG_VIRTFS)) += virtio-ccw-9p.o
|
|
obj-$(CONFIG_VHOST_VSOCK) += vhost-vsock-ccw.o
|
|
endif
|
|
obj-y += css-bridge.o
|
|
obj-y += ccw-device.o
|
|
obj-y += s390-pci-bus.o s390-pci-inst.o
|
|
obj-y += s390-skeys.o
|
|
obj-y += s390-stattrib.o
|
|
obj-y += tod.o
|
|
obj-y += tod-qemu.o
|
|
obj-$(CONFIG_KVM) += tod-kvm.o
|
|
obj-$(CONFIG_KVM) += s390-skeys-kvm.o
|
|
obj-$(CONFIG_KVM) += s390-stattrib-kvm.o
|
|
obj-y += s390-ccw.o
|
|
obj-y += ap-device.o
|
|
obj-y += ap-bridge.o
|