summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/console/CMakeLists.txt2
-rw-r--r--lib/fatfs/CMakeLists.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/console/CMakeLists.txt b/lib/console/CMakeLists.txt
index 5904ac5a..093380e1 100644
--- a/lib/console/CMakeLists.txt
+++ b/lib/console/CMakeLists.txt
@@ -28,4 +28,4 @@ idf_component_register(SRCS "commands.c"
${argtable_srcs}
INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}
REQUIRES vfs
- PRIV_REQUIRES driver)
+ PRIV_REQUIRES driver esp_vfs_console)
diff --git a/lib/fatfs/CMakeLists.txt b/lib/fatfs/CMakeLists.txt
index b6a288e0..f641ca86 100644
--- a/lib/fatfs/CMakeLists.txt
+++ b/lib/fatfs/CMakeLists.txt
@@ -22,9 +22,9 @@ else()
list(APPEND include_dirs "vfs")
- list(APPEND requires "sdmmc")
+ list(APPEND requires "sdmmc" "esp_driver_sdmmc" "esp_driver_sdspi")
- list(APPEND priv_requires "vfs")
+ list(APPEND priv_requires "vfs" "esp_driver_gpio")
endif()
idf_component_register(SRCS ${srcs}