@@ -31,8 +31,8 @@ def makezip(source, target, env):
3131 if not os .path .exists (env .subst ("$BUILD_DIR/firmware.bin" )):
3232 print ("FIRMWARE not available to pack in firmware zip" )
3333 zipit = False
34- if not os .path .exists (env .subst ("$BUILD_DIR/spiffs .bin" )):
35- print ("SPIFFS not available to pack in firmware zip, run \" Build Filesystem Image\" first" )
34+ if not os .path .exists (env .subst ("$BUILD_DIR/littlefs .bin" )):
35+ print ("LittleFS not available to pack in firmware zip, run \" Build Filesystem Image\" first" )
3636 zipit = False
3737
3838 if zipit == True :
@@ -118,7 +118,7 @@ def makezip(source, target, env):
118118 "offset": "0x10000"
119119 },
120120 {
121- "filename": "spiffs .bin",
121+ "filename": "littlefs .bin",
122122 "offset": "0x910000"
123123 }
124124 ]
@@ -138,7 +138,7 @@ def makezip(source, target, env):
138138 "offset": "0x10000"
139139 },
140140 {
141- "filename": "spiffs .bin",
141+ "filename": "littlefs .bin",
142142 "offset": "0x600000"
143143 }
144144 ]
@@ -158,7 +158,7 @@ def makezip(source, target, env):
158158 "offset": "0x10000"
159159 },
160160 {
161- "filename": "spiffs .bin",
161+ "filename": "littlefs .bin",
162162 "offset": "0x250000"
163163 }
164164 ]
@@ -174,7 +174,7 @@ def makezip(source, target, env):
174174 zip_object .write (env .subst ("$BUILD_DIR/bootloader.bin" ), "bootloader.bin" )
175175 zip_object .write (env .subst ("$BUILD_DIR/partitions.bin" ), "partitions.bin" )
176176 zip_object .write (env .subst ("$BUILD_DIR/firmware.bin" ), "firmware.bin" )
177- zip_object .write (env .subst ("$BUILD_DIR/spiffs .bin" ), "spiffs .bin" )
177+ zip_object .write (env .subst ("$BUILD_DIR/littlefs .bin" ), "littlefs .bin" )
178178 zip_object .write ("firmware/release.json" , "release.json" )
179179 else :
180180 print ("Skipping making firmware ZIP due to error" )
0 commit comments