summaryrefslogtreecommitdiffstatshomepage
path: root/ports/esp8266/boards/manifest.py
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2019-10-21 15:55:18 +1100
committerDamien George <damien.p.george@gmail.com>2019-12-20 12:59:13 +1100
commit7ce1e0b1dc466e48606164aad223c81c93a9cea2 (patch)
tree7ee755742cb06393c13b420610525b85b77f10aa /ports/esp8266/boards/manifest.py
parent7f235cbee924305e2d8a8aa86876770af66d7d82 (diff)
downloadmicropython-7ce1e0b1dc466e48606164aad223c81c93a9cea2.tar.gz
micropython-7ce1e0b1dc466e48606164aad223c81c93a9cea2.zip
extmod/webrepl: Move webrepl scripts to common place and use manifest.
Move webrepl support code from ports/esp8266/modules into extmod/webrepl (to be alongside extmod/modwebrepl.c), and use frozen manifests to include it in the build on esp8266 and esp32. A small modification is made to webrepl.py to make it work on non-ESP ports, i.e. don't call dupterm_notify if not available.
Diffstat (limited to 'ports/esp8266/boards/manifest.py')
-rw-r--r--ports/esp8266/boards/manifest.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/esp8266/boards/manifest.py b/ports/esp8266/boards/manifest.py
index 779e840880..b6df53fc64 100644
--- a/ports/esp8266/boards/manifest.py
+++ b/ports/esp8266/boards/manifest.py
@@ -2,3 +2,4 @@ freeze('$(PORT_DIR)/modules')
freeze('$(MPY_DIR)/tools', ('upip.py', 'upip_utarfile.py'))
freeze('$(MPY_DIR)/drivers/dht', 'dht.py')
freeze('$(MPY_DIR)/drivers/onewire')
+include('$(MPY_DIR)/extmod/webrepl/manifest.py')