From 8db61e5b5ae791249508895989a06f2466741f88 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 7 May 2016 20:04:45 +0300 Subject: [PATCH] esp8266/scripts/inisetup: Don't start WebREPL on boot in master branch. It interferes with running testsuite. master branch should be optimized for development, so any features which interfere with that, would need to be disabled by default. --- esp8266/scripts/inisetup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esp8266/scripts/inisetup.py b/esp8266/scripts/inisetup.py index 93a05bd8a7..461690b162 100644 --- a/esp8266/scripts/inisetup.py +++ b/esp8266/scripts/inisetup.py @@ -40,7 +40,7 @@ def setup(): with open("/boot.py", "w") as f: f.write("""\ # This file is executed on every boot (including wake-boot from deepsleep) -import webrepl -webrepl.start() +#import webrepl +#webrepl.start() """) return vfs