mirror of
https://github.com/apache/nuttx.git
synced 2026-05-12 01:42:49 +08:00
2274c31950
The vhost driver uses work_queue() for deferred probe but was missing the SCHED_WORKQUEUE Kconfig dependency, causing link errors on boards that don't enable workqueue by default. Signed-off-by: wangzhi16 <wangzhi16@xiaomi.com>
23 lines
436 B
Plaintext
23 lines
436 B
Plaintext
#
|
|
# 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_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
|
|
|