Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Yocto machine include that defines where middleware IPK feeds are fetched from.
Changes:
- Repoints
MW_IPK_SERVER_PATHto amiddleware-dbg/RDKEMW-12532-build-testartifacts directory.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}" | ||
| MW_IPK_SERVER_PATH ?= "${RDK_ARTIFACTS_BASE_URL}/${MW_IPK_PATH}/${RDK_MW_ARCH}/ipks/${BUILD_VARIANT}" | ||
| MW_IPK_SERVER_PATH ?= "${RDK_ARTIFACTS_BASE_URL}/middleware-dbg/RDKEMW-12532-build-test/${RDK_MW_ARCH}/ipks/${BUILD_VARIANT}" |
There was a problem hiding this comment.
MW_IPK_SERVER_PATH is now hardcoded to a debug/test artifacts path (middleware-dbg/RDKEMW-12532-build-test/...), which will redirect all builds using this include to a ticket-specific location and likely break reproducibility once that directory is removed/rotated. This also makes MW_IPK_PATH unused. Please revert to composing the server path from ${MW_IPK_PATH} (as MW_OSS_IPK_SERVER_PATH does in oss_mw.inc) and, if a debug feed is needed, gate it behind a dedicated override variable (e.g., via local.conf/machine override) rather than baking a temporary path into the shared include.
| MW_IPK_SERVER_PATH ?= "${RDK_ARTIFACTS_BASE_URL}/middleware-dbg/RDKEMW-12532-build-test/${RDK_MW_ARCH}/ipks/${BUILD_VARIANT}" | |
| MW_IPK_SERVER_PATH ?= "${RDK_ARTIFACTS_BASE_URL}/${MW_IPK_PATH}/${RDK_MW_ARCH}/ipks/${BUILD_VARIANT}" |
No description provided.