Skip to content

Commit 275827a

Browse files
authored
fix(file_system): rename esp_littlefs submodule to littlefs so dependency name is always the same (#426)
* fix(file_system): Fix dependency name when used as a managed component * actually rename esp_littlefs -> littlefs to match managed component for better build * sync
1 parent c3ca5ad commit 275827a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
[submodule "components/serialization/detail/alpaca"]
55
path = components/serialization/detail/alpaca
66
url = https://github.com/p-ranav/alpaca
7-
[submodule "components/esp_littlefs"]
8-
path = components/esp_littlefs
7+
[submodule "components/littlefs"]
8+
path = components/littlefs
99
url = https://github.com/joltwallet/esp_littlefs
1010
[submodule "components/lvgl"]
1111
path = components/lvgl

components/file_system/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
idf_component_register(
22
INCLUDE_DIRS "include"
33
SRC_DIRS "src"
4-
REQUIRES base_component esp_littlefs spi_flash)
4+
REQUIRES base_component littlefs spi_flash)

0 commit comments

Comments
 (0)