1
0
Fork 0
forked from nuttx/nuttx-update

v9fs/CMakeLists.txt:Fix the problem that virtio-9p is not compiled properly in cmake

Summary:
  change CONFIG_DRIVERS_VIRTIO_9P -> CONFIG_V9FS_VIRTIO_9P

Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
This commit is contained in:
chenrun1 2024-10-23 11:11:11 +08:00 committed by Xiang Xiao
parent 9facfade90
commit 0c9203b48e

View file

@ -23,7 +23,7 @@
if(CONFIG_FS_V9FS)
set(V9FS client.c transport.c v9fs.c)
if(CONFIG_DRIVERS_VIRTIO_9P)
if(CONFIG_V9FS_VIRTIO_9P)
list(APPEND V9FS virtio_9p.c)
endif()