esp32/modules: On initial setup mount internal flash at root.

Like it's done on normal boot up.  Fixes issue #5004.
pull/4994/merge
Damien George 2019-08-15 22:03:09 +10:00
rodzic 64abc1f47a
commit baeebc557c
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -29,8 +29,7 @@ def setup():
print("Performing initial setup")
uos.VfsFat.mkfs(bdev)
vfs = uos.VfsFat(bdev)
uos.mount(vfs, '/flash')
uos.chdir('/flash')
uos.mount(vfs, '/')
with open("boot.py", "w") as f:
f.write("""\
# This file is executed on every boot (including wake-boot from deepsleep)