diff options
author | Roman Kagan | 2018-09-21 10:20:39 +0200 |
---|---|---|
committer | Paolo Bonzini | 2018-10-19 13:44:13 +0200 |
commit | 701189e31140a7c82ec02a7f4ca632cfd6a8559d (patch) | |
tree | 3d8be9e7f4a05214a33cf713a7f732be797ae0d9 /hw/Makefile.objs | |
parent | hyperv: make hyperv_vp_index inline (diff) | |
download | qemu-701189e31140a7c82ec02a7f4ca632cfd6a8559d.tar.gz qemu-701189e31140a7c82ec02a7f4ca632cfd6a8559d.tar.xz qemu-701189e31140a7c82ec02a7f4ca632cfd6a8559d.zip |
hyperv: factor out arch-independent API into hw/hyperv
A significant part of hyperv.c is not actually tied to x86, and can
be moved to hw/.
This will allow to maintain most of Hyper-V and VMBus
target-independent, and to avoid conflicts with inclusion of
arch-specific headers down the road in VMBus implementation.
Also this stuff can now be opt-out with CONFIG_HYPERV.
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
Message-Id: <20180921082041.29380-4-rkagan@virtuozzo.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/Makefile.objs')
-rw-r--r-- | hw/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/Makefile.objs b/hw/Makefile.objs index a19c1417ed..30722ccf98 100644 --- a/hw/Makefile.objs +++ b/hw/Makefile.objs @@ -9,6 +9,7 @@ devices-dirs-$(CONFIG_SOFTMMU) += cpu/ devices-dirs-$(CONFIG_SOFTMMU) += display/ devices-dirs-$(CONFIG_SOFTMMU) += dma/ devices-dirs-$(CONFIG_SOFTMMU) += gpio/ +devices-dirs-$(CONFIG_HYPERV) += hyperv/ devices-dirs-$(CONFIG_SOFTMMU) += i2c/ devices-dirs-$(CONFIG_SOFTMMU) += ide/ devices-dirs-$(CONFIG_SOFTMMU) += input/ |