summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266/modules/_boot.py
diff options
context:
space:
mode:
Diffstat (limited to 'esp8266/modules/_boot.py')
-rw-r--r--esp8266/modules/_boot.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/esp8266/modules/_boot.py b/esp8266/modules/_boot.py
deleted file mode 100644
index 81eb20dd63..0000000000
--- a/esp8266/modules/_boot.py
+++ /dev/null
@@ -1,13 +0,0 @@
-import gc
-gc.threshold((gc.mem_free() + gc.mem_alloc()) // 4)
-import uos
-from flashbdev import bdev
-
-try:
- if bdev:
- uos.mount(bdev, '/')
-except OSError:
- import inisetup
- inisetup.setup()
-
-gc.collect()