Conversation
There was a problem hiding this comment.
Pull request overview
Updates the middleware OPKG/IPK feed configuration to point at a different artifact repository path for middleware packages.
Changes:
- Switch middleware IPK feed root directory from
middleware-rel/...tomiddleware-dbg/.... - Update
RELEASE_NUMto a ticket-based identifier and adjust the middleware IPK server path to a debug-onlyipks/dbglocation.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| conf/machine/include/oss_mw.inc | Changes OSS middleware feed base path to middleware-dbg/${RELEASE_NUM}. |
| conf/machine/include/middleware.inc | Updates RELEASE_NUM and redirects middleware feed paths to middleware-dbg/.../ipks/dbg. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| OPKG_ARCH_PRIORITY:${MW_OSS} = "205" | ||
| MW_OSS_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}" | ||
| MW_OSS_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}" | ||
| MW_OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/${MW_OSS_IPK_PATH}/${RDK_MW_ARCH}/${MW_OSS}/ipks/${BUILD_VARIANT}" |
There was a problem hiding this comment.
MW_OSS_IPK_PATH now points to the "middleware-dbg" tree, but MW_OSS_IPK_SERVER_PATH still appends "/ipks/${BUILD_VARIANT}". If ${BUILD_VARIANT} can be non-"debug", this will generate a path that likely doesn't exist under the debug tree. Align these (e.g., use "/ipks/debug" when using middleware-dbg, or keep the path variant-based).
| MW_OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/${MW_OSS_IPK_PATH}/${RDK_MW_ARCH}/${MW_OSS}/ipks/${BUILD_VARIANT}" | |
| MW_OSS_IPK_SERVER_PATH = "${RDK_ARTIFACTS_BASE_URL}/${MW_OSS_IPK_PATH}/${RDK_MW_ARCH}/${MW_OSS}/ipks/debug" |
7b01ef8 to
7c37408
Compare
No description provided.