diff options
author | Thomas Huth <thuth@redhat.com> | 2018-07-25 20:07:36 +0200 |
---|---|---|
committer | Cornelia Huck <cohuck@redhat.com> | 2018-08-28 17:37:01 +0200 |
commit | efbc1783bd82b8062c5958193b35052998de3258 (patch) | |
tree | a02a831829ad5c3924e9e937aab20f9cf41d7d7a /hw/s390x/Makefile.objs | |
parent | 90b90a0f8fb9f0b6fea08894998700f8e82b8a7a (diff) | |
download | qemu-efbc1783bd82b8062c5958193b35052998de3258.zip |
hw/s390x: Move virtio-ccw-net code to a separate file
The code should only be enabled if CONFIG_VIRTIO_NET has been set.
This can be done best if the code resides in a separate file.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1532542056-8927-1-git-send-email-thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'hw/s390x/Makefile.objs')
-rw-r--r-- | hw/s390x/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/s390x/Makefile.objs b/hw/s390x/Makefile.objs index 0d7e162598..172ba55455 100644 --- a/hw/s390x/Makefile.objs +++ b/hw/s390x/Makefile.objs @@ -15,6 +15,7 @@ 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-$(call land,$(CONFIG_VIRTIO_9P),$(CONFIG_VIRTFS)) += virtio-ccw-9p.o obj-$(CONFIG_VHOST_VSOCK) += vhost-vsock-ccw.o obj-y += css-bridge.o |