Skip to content

Commit 6d702ae

Browse files
authored
add LittleFS as partition type
1 parent 750d76e commit 6d702ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def _to_unix_slashes(path):
202202
def fetch_fs_size(env):
203203
fs = None
204204
for p in _parse_partitions(env):
205-
if p["type"] == "data" and p["subtype"] in ("spiffs", "fat"):
205+
if p["type"] == "data" and p["subtype"] in ("spiffs", "fat", "littlefs"):
206206
fs = p
207207
if not fs:
208208
sys.stderr.write(

0 commit comments

Comments
 (0)