From 0c9203b48e162740147cf77b62b72b441cf07170 Mon Sep 17 00:00:00 2001 From: chenrun1 Date: Wed, 23 Oct 2024 11:11:11 +0800 Subject: [PATCH] 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 --- fs/v9fs/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/v9fs/CMakeLists.txt b/fs/v9fs/CMakeLists.txt index 2df5868a6c..da46982bac 100644 --- a/fs/v9fs/CMakeLists.txt +++ b/fs/v9fs/CMakeLists.txt @@ -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()