From 8172c2e9c5d5eec9a6b0a3f6cc4a2383b3d96d26 Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 4 May 2021 23:36:05 +1000 Subject: [PATCH] rp2: Move manifest.py to boards directory. To match other ports. Signed-off-by: Damien George --- ports/rp2/CMakeLists.txt | 2 +- ports/rp2/{ => boards}/manifest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename ports/rp2/{ => boards}/manifest.py (74%) 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")