diff options
author | Damien George <damien.p.george@gmail.com> | 2017-05-26 17:05:58 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-05-26 17:05:58 +1000 |
commit | eea584860dc65203dcae407819c2f139c1f71214 (patch) | |
tree | 6a2606f055b9c47049ea2233094bd32287953f4c /esp8266/modules/_boot.py | |
parent | e26fb3ad73d1c663f9e6aee45306ce86f8342e1e (diff) | |
download | micropython-eea584860dc65203dcae407819c2f139c1f71214.tar.gz micropython-eea584860dc65203dcae407819c2f139c1f71214.zip |
esp8266/modules: Mount filesystem at root when creating for first time.
Diffstat (limited to 'esp8266/modules/_boot.py')
-rw-r--r-- | esp8266/modules/_boot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/modules/_boot.py b/esp8266/modules/_boot.py index 52683693d4..81eb20dd63 100644 --- a/esp8266/modules/_boot.py +++ b/esp8266/modules/_boot.py @@ -8,6 +8,6 @@ try: uos.mount(bdev, '/') except OSError: import inisetup - vfs = inisetup.setup() + inisetup.setup() gc.collect() |