diff --git a/ports/rp2/CMakeLists.txt b/ports/rp2/CMakeLists.txt index bd3eb74384..699520b240 100644 --- a/ports/rp2/CMakeLists.txt +++ b/ports/rp2/CMakeLists.txt @@ -159,7 +159,7 @@ set(PICO_SDK_COMPONENTS # Define mpy-cross flags and frozen manifest set(MICROPY_CROSS_FLAGS -march=armv7m) -set(MICROPY_FROZEN_MANIFEST ${PROJECT_SOURCE_DIR}/manifest.py) +set(MICROPY_FROZEN_MANIFEST ${PROJECT_SOURCE_DIR}/boards/manifest.py) target_sources(${MICROPY_TARGET} PRIVATE ${MICROPY_SOURCE_PY} diff --git a/ports/rp2/manifest.py b/ports/rp2/boards/manifest.py similarity index 74% rename from ports/rp2/manifest.py rename to ports/rp2/boards/manifest.py index a56d4b1b09..9df589f126 100644 --- a/ports/rp2/manifest.py +++ b/ports/rp2/boards/manifest.py @@ -1,3 +1,3 @@ -freeze("modules") +freeze("$(PORT_DIR)/modules") freeze("$(MPY_DIR)/drivers/onewire") include("$(MPY_DIR)/extmod/uasyncio/manifest.py")