summaryrefslogtreecommitdiffstatshomepage
path: root/ports/esp32/modules/_boot.py
blob: a7d9813090bfde5245d992dc9c4c5c85e1914d99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import gc
import uos
from flashbdev import bdev

try:
    if bdev:
        uos.mount(bdev, "/")
except OSError:
    import inisetup

    vfs = inisetup.setup()

gc.collect()