Skip to content

Commit 5a977ef

Browse files
committed
STORAGE: PR 3762 fix to remove FAT_FS, SD_FS, FS_LIBRARY from tools scripts.
1 parent e43f667 commit 5a977ef

File tree

3 files changed

+3
-19
lines changed

3 files changed

+3
-19
lines changed

tools/build.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,6 @@
9292
default=False,
9393
help="Compile the DSP library")
9494

95-
parser.add_argument("-F", "--fat",
96-
action="store_true",
97-
dest="fat",
98-
default=False,
99-
help="Compile FS and SD card file system library")
100-
10195
parser.add_argument("-b", "--ublox",
10296
action="store_true",
10397
dest="ublox",
@@ -199,8 +193,6 @@
199193
libraries.append("usb_host")
200194
if options.dsp:
201195
libraries.extend(["dsp"])
202-
if options.fat:
203-
libraries.extend(["fat"])
204196
if options.ublox:
205197
libraries.extend(["rtx", "rtos", "usb_host", "ublox"])
206198
if options.cpputest_lib:

tools/build_travis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
################################################################################
2626
# Configure builds here
27-
# "libs" can contain "dsp", "rtos", "eth", "usb_host", "usb", "ublox", "fat"
27+
# "libs" can contain "dsp", "rtos", "eth", "usb_host", "usb", "ublox"
2828

2929
build_list = (
3030
{ "target": "LPC1768", "toolchains": "GCC_ARM", "libs": ["dsp", "rtos", "eth", "usb"] },
@@ -133,7 +133,7 @@
133133
)
134134

135135
################################################################################
136-
# Configure example test building (linking against external mbed SDK libraries liek fat or rtos)
136+
# Configure example test building (linking against external mbed SDK libraries like rtos)
137137

138138
linking_list = [
139139
{"target": "LPC1768",

tools/make.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
from tools.paths import ETH_LIBRARY
3838
from tools.paths import USB_HOST_LIBRARIES, USB_LIBRARIES
3939
from tools.paths import DSP_LIBRARIES
40-
from tools.paths import FS_LIBRARY
4140
from tools.paths import UBLOX_LIBRARY
4241
from tools.tests import TESTS, Test, TEST_MAP
4342
from tools.tests import TEST_MBED_LIB
@@ -130,7 +129,7 @@
130129
default=False, help="List available tests in order and exit")
131130

132131
# Ideally, all the tests with a single "main" thread can be run with, or
133-
# without the rtos, eth, usb_host, usb, dsp, fat, ublox
132+
# without the rtos, eth, usb_host, usb, dsp, ublox
134133
parser.add_argument("--rtos",
135134
action="store_true", dest="rtos",
136135
default=False, help="Link with RTOS library")
@@ -162,12 +161,6 @@
162161
default=False,
163162
help="Link with DSP library")
164163

165-
parser.add_argument("--fat",
166-
action="store_true",
167-
dest="fat",
168-
default=False,
169-
help="Link with FS ad SD card file system library")
170-
171164
parser.add_argument("--ublox",
172165
action="store_true",
173166
dest="ublox",
@@ -263,7 +256,6 @@
263256
if options.usb_host: test.dependencies.append(USB_HOST_LIBRARIES)
264257
if options.usb: test.dependencies.append(USB_LIBRARIES)
265258
if options.dsp: test.dependencies.append(DSP_LIBRARIES)
266-
if options.fat: test.dependencies.append(FS_LIBRARY)
267259
if options.ublox: test.dependencies.append(UBLOX_LIBRARY)
268260
if options.testlib: test.dependencies.append(TEST_MBED_LIB)
269261

0 commit comments

Comments
 (0)