Closed
Description
tools/partitions/default.csv has been updated by #2678 to move spiffs partition to offset 0x290000 instead of 0x291000, but tools/partitions/default.bin has not been updated.
> grep spiffs esp32/1.0.4/tools/partitions/default.csv
spiffs, data, spiffs, 0x290000,0x170000,
> python gen_esp32part.py esp32/1.0.4/tools/partitions/default.bin | grep spiffs
spiffs,data,spiffs,0x291000,1468K,
It is rather confusing and error prone to have two files with matching names (default.csv and default.bin), but inconsistent content (took me some time to figure out why my SPIFFS that I flashed at 0x290000 together with the default.bin partition table was not working). I guess this is not intentional. Would it be possible to update default.bin in the next release such that it matches default.csv?