esp8266/scripts/inisetup: Dump FS starting sector/size on error.

Should allow to diagnose/try to recover FS easier.
pull/2564/merge
Paul Sokolovsky 2017-01-02 18:52:35 +03:00
rodzic 5efd6508ec
commit 86d210951f
1 zmienionych plików z 6 dodań i 5 usunięć

Wyświetl plik

@ -24,11 +24,12 @@ def fs_corrupted():
import time
while 1:
print("""\
FAT filesystem appears to be corrupted. If you had important data there, you
may want to make a flash snapshot to try to recover it. Otherwise, perform
factory reprogramming of MicroPython firmware (completely erase flash, followed
by firmware programming).
""")
The FAT filesystem starting at sector %d with size %d sectors appears to
be corrupted. If you had important data there, you may want to make a flash
snapshot to try to recover it. Otherwise, perform factory reprogramming
of MicroPython firmware (completely erase flash, followed by firmware
programming).
""" % (bdev.START_SEC, bdev.blocks))
time.sleep(3)
def setup():