From 2acb81a94e0900bda93eff6760035f11e54242ff Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Thu, 8 Aug 2024 18:52:04 +0100 Subject: [PATCH] CI: Fix manifest.py. --- micropython/board/PIMORONI_PICO_PLUS2/manifest.py | 2 +- micropython/board/PIMORONI_PLASMA2350/manifest.py | 2 +- micropython/board/PIMORONI_TINY2350/manifest.py | 2 +- micropython/board/RPI_PICO2/manifest.py | 2 +- micropython/board/RPI_PICO2B/manifest.py | 2 +- micropython/board/manifest_pico2.py | 6 ++++++ 6 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 micropython/board/manifest_pico2.py diff --git a/micropython/board/PIMORONI_PICO_PLUS2/manifest.py b/micropython/board/PIMORONI_PICO_PLUS2/manifest.py index 30ce0dd..fb2a59b 100644 --- a/micropython/board/PIMORONI_PICO_PLUS2/manifest.py +++ b/micropython/board/PIMORONI_PICO_PLUS2/manifest.py @@ -1,3 +1,3 @@ include("$(PORT_DIR)/boards/manifest.py") -include("../manifest_pico.py") \ No newline at end of file +include("../manifest_pico2.py") \ No newline at end of file diff --git a/micropython/board/PIMORONI_PLASMA2350/manifest.py b/micropython/board/PIMORONI_PLASMA2350/manifest.py index 30ce0dd..fb2a59b 100644 --- a/micropython/board/PIMORONI_PLASMA2350/manifest.py +++ b/micropython/board/PIMORONI_PLASMA2350/manifest.py @@ -1,3 +1,3 @@ include("$(PORT_DIR)/boards/manifest.py") -include("../manifest_pico.py") \ No newline at end of file +include("../manifest_pico2.py") \ No newline at end of file diff --git a/micropython/board/PIMORONI_TINY2350/manifest.py b/micropython/board/PIMORONI_TINY2350/manifest.py index 30ce0dd..fb2a59b 100644 --- a/micropython/board/PIMORONI_TINY2350/manifest.py +++ b/micropython/board/PIMORONI_TINY2350/manifest.py @@ -1,3 +1,3 @@ include("$(PORT_DIR)/boards/manifest.py") -include("../manifest_pico.py") \ No newline at end of file +include("../manifest_pico2.py") \ No newline at end of file diff --git a/micropython/board/RPI_PICO2/manifest.py b/micropython/board/RPI_PICO2/manifest.py index 30ce0dd..fb2a59b 100644 --- a/micropython/board/RPI_PICO2/manifest.py +++ b/micropython/board/RPI_PICO2/manifest.py @@ -1,3 +1,3 @@ include("$(PORT_DIR)/boards/manifest.py") -include("../manifest_pico.py") \ No newline at end of file +include("../manifest_pico2.py") \ No newline at end of file diff --git a/micropython/board/RPI_PICO2B/manifest.py b/micropython/board/RPI_PICO2B/manifest.py index 30ce0dd..fb2a59b 100644 --- a/micropython/board/RPI_PICO2B/manifest.py +++ b/micropython/board/RPI_PICO2B/manifest.py @@ -1,3 +1,3 @@ include("$(PORT_DIR)/boards/manifest.py") -include("../manifest_pico.py") \ No newline at end of file +include("../manifest_pico2.py") \ No newline at end of file diff --git a/micropython/board/manifest_pico2.py b/micropython/board/manifest_pico2.py new file mode 100644 index 0000000..df993ee --- /dev/null +++ b/micropython/board/manifest_pico2.py @@ -0,0 +1,6 @@ +MODULES_PY = "../../../pimoroni-pico/micropython/modules_py" + +freeze(MODULES_PY, "gfx_pack.py") + +freeze(MODULES_PY, "pimoroni.py") +freeze(MODULES_PY, "boot.py")