mirror of https://github.com/arendst/Tasmota.git
Shelly has label `fs_1` for spiffs (#17753)
* Shelly has label `fs_1` for spiffs
This commit is contained in:
parent
51866026d5
commit
6b4171fef9
|
@ -106,7 +106,7 @@ void UfsInitOnce(void) {
|
|||
#ifdef ESP32
|
||||
// try lfs first
|
||||
ffsp = &LittleFS;
|
||||
if (!LittleFS.begin(true, "")) { // force empty mount point to make it the fallback FS
|
||||
if (!LittleFS.begin(true, "") && !LittleFS.begin(true, "", 5, "fs_1")) { // force empty mount point to make it the fallback FS
|
||||
// ffat is second
|
||||
ffsp = &FFat;
|
||||
if (!FFat.begin(true, "")) {
|
||||
|
|
Loading…
Reference in New Issue