nuttx/drivers/vhost/Kconfig
Bowen Wang 4ded8df3d5 virtio and vhost-rpmsg: add virtio and vhost rpmsg device support
virtio and vhost rpmsg device as standalone device registered to
the virtio and vhost bus.

virtio-rpmsg and vhost-rpmsg use the common virtio_rpmsg_common.c
implementation in rpmsg dir.

Signed-off-by: Bowen Wang <wangbowen6@xiaomi.com>
2026-01-19 14:18:27 +08:00

22 lines
435 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menuconfig DRIVERS_VHOST
bool "Virtual Host Support"
select OPENAMP
default n
if DRIVERS_VHOST
config DRIVERS_VHOST_RNG
bool "Virtual Host Rng Device Support"
default n
config DRIVERS_VHOST_RPMSG
bool "Virtual Host Rpmsg Device Support"
default n
select RPMSG_VIRTIO
endif # DRIVERS_VHOST