diff options
author | Damien George <damien@micropython.org> | 2021-05-28 00:09:34 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-05-28 18:32:56 +1000 |
commit | db8704ecbd910e598fba4bc1817acf91d9da79e3 (patch) | |
tree | 978567344870098cee7da4283384024e9130c33a /ports/esp8266/boards/GENERIC/manifest.py | |
parent | 211c3e41f12295f08a883ac326386ecb5bc8d68e (diff) |
esp8266,esp32: Update manifest to point to new dirs in micropython-lib.
Following a refactoring of micropython-lib.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/esp8266/boards/GENERIC/manifest.py')
-rw-r--r-- | ports/esp8266/boards/GENERIC/manifest.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ports/esp8266/boards/GENERIC/manifest.py b/ports/esp8266/boards/GENERIC/manifest.py index 46f3b837b..9ce3ffe3a 100644 --- a/ports/esp8266/boards/GENERIC/manifest.py +++ b/ports/esp8266/boards/GENERIC/manifest.py @@ -10,12 +10,12 @@ freeze("$(MPY_DIR)/drivers/display", "ssd1306.py") # Libraries from micropython-lib, include only if the library directory exists if os.path.isdir(convert_path("$(MPY_LIB_DIR)")): # file utilities - freeze("$(MPY_LIB_DIR)/upysh", "upysh.py") + freeze("$(MPY_LIB_DIR)/micropython/upysh", "upysh.py") # requests - freeze("$(MPY_LIB_DIR)/urequests", "urequests.py") - freeze("$(MPY_LIB_DIR)/urllib.urequest", "urllib/urequest.py") + freeze("$(MPY_LIB_DIR)/python-ecosys/urequests", "urequests.py") + freeze("$(MPY_LIB_DIR)/micropython/urllib.urequest", "urllib/urequest.py") # umqtt - freeze("$(MPY_LIB_DIR)/umqtt.simple", "umqtt/simple.py") - freeze("$(MPY_LIB_DIR)/umqtt.robust", "umqtt/robust.py") + freeze("$(MPY_LIB_DIR)/micropython/umqtt.simple", "umqtt/simple.py") + freeze("$(MPY_LIB_DIR)/micropython/umqtt.robust", "umqtt/robust.py") |