diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2021-07-09 10:30:16 +0530 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2021-07-16 11:10:40 -0400 |
commit | 7221d3b634d1995a63a91de9b5035abf643c7ebc (patch) | |
tree | d47c2d1c38267ba06399665265d152226b88bc01 /hw/virtio/Kconfig | |
parent | 1580b897c7b2f794fff7ba140ab757be1f6efadc (diff) | |
download | qemu-7221d3b634d1995a63a91de9b5035abf643c7ebc.zip qemu-7221d3b634d1995a63a91de9b5035abf643c7ebc.tar.gz qemu-7221d3b634d1995a63a91de9b5035abf643c7ebc.tar.bz2 |
hw/virtio: add boilerplate for vhost-user-i2c device
This creates the QEMU side of the vhost-user-i2c device which connects
to the remote daemon. It is based of vhost-user-fs code.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Message-Id: <e80591b52fea4b51631818bb92a798a3daf90399.1625806763.git.viresh.kumar@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/Kconfig')
-rw-r--r-- | hw/virtio/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/virtio/Kconfig b/hw/virtio/Kconfig index 0eda25c..35ab45e 100644 --- a/hw/virtio/Kconfig +++ b/hw/virtio/Kconfig @@ -58,3 +58,8 @@ config VIRTIO_MEM depends on LINUX depends on VIRTIO_MEM_SUPPORTED select MEM_DEVICE + +config VHOST_USER_I2C + bool + default y + depends on VIRTIO && VHOST_USER |