Skip to content

Commit ab63f5a

Browse files
committed
FILESYSTEM: moved FAT filesystem implemenation to features/filesystem subdir, and fs-fat tests to features/TESTS.
1 parent ceb9266 commit ab63f5a

23 files changed

+4
-2
lines changed

tools/paths.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
BUILD_DIR = getenv("MBED_BUILD_DIR") or BUILD_DIR
2525

2626
# Embedded Libraries Sources
27-
LIB_DIR = join(ROOT, "features/unsupported")
27+
FEATURES_DIR = join(ROOT, "features")
28+
LIB_DIR = join(FEATURES_DIR, "unsupported")
29+
2830

2931
TOOLS = join(ROOT, "tools")
3032
TOOLS_DATA = join(TOOLS, "data")
@@ -77,7 +79,7 @@
7779
UBLOX_LIBRARY = join(NET_LIBRARIES, "UbloxUSBModem")
7880

7981
# FS
80-
FS_PATH = join(LIB_DIR, "fs")
82+
FS_PATH = join(LIB_DIR, "filesystem")
8183
FAT_FS = join(FS_PATH, "fat")
8284
SD_FS = join(FS_PATH, "sd")
8385
FS_LIBRARY = join(BUILD_DIR, "fat")

0 commit comments

Comments
 (0)