#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

config DRIVERS_VHOST
	bool
	select OPENAMP
	select SCHED_WORKQUEUE
	default n

config DRIVERS_VHOST_BLK
	bool "Virtual Host Blk Device Support"
	default n
	select DRIVERS_VHOST

if DRIVERS_VHOST_BLK

config DRIVERS_VHOST_BLK_PRIORITY
	int "vhost blk thread priority"
	default 224

config DRIVERS_VHOST_BLK_STACKSIZE
	int "vhost blk stack size"
	default 4096

endif # DRIVERS_VHOST_BLK

config DRIVERS_VHOST_RNG
	bool "Virtual Host Rng Device Support"
	default n
	select DRIVERS_VHOST

config DRIVERS_VHOST_RPMSG
	bool "Virtual Host Rpmsg Device Support"
	default n
	select RPMSG_VIRTIO
	select DRIVERS_VHOST