FILESYSTEM: moved FAT filesystem implemenation to features/filesystem subdir, and fs-fat tests to features/TESTS.

pull/3762/head
Simon Hughes 2016-12-20 17:05:15 +00:00
parent a35919afbe
commit 4acf33f436
23 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,9 @@ from tools.settings import ROOT, BUILD_DIR
BUILD_DIR = getenv("MBED_BUILD_DIR") or BUILD_DIR
# Embedded Libraries Sources
LIB_DIR = join(ROOT, "features/unsupported")
FEATURES_DIR = join(ROOT, "features")
LIB_DIR = join(FEATURES_DIR, "unsupported")
TOOLS = join(ROOT, "tools")
TOOLS_DATA = join(TOOLS, "data")
@ -77,7 +79,7 @@ VODAFONE_LIBRARY = join(NET_LIBRARIES, "VodafoneUSBModem")
UBLOX_LIBRARY = join(NET_LIBRARIES, "UbloxUSBModem")
# FS
FS_PATH = join(LIB_DIR, "fs")
FS_PATH = join(LIB_DIR, "filesystem")
FAT_FS = join(FS_PATH, "fat")
SD_FS = join(FS_PATH, "sd")
FS_LIBRARY = join(BUILD_DIR, "fat")