mirror of
https://github.com/apache/nuttx.git
synced 2026-08-19 12:38:18 +00:00
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>
22 lines
435 B
Text
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
|