Skip to content

Feature/rdkemw 22188 xoeref - #168

Open
dp0000 wants to merge 7 commits into
support/8.4.4.0from
feature/RDKEMW-22188_xoeref
Open

Feature/rdkemw 22188 xoeref#168
dp0000 wants to merge 7 commits into
support/8.4.4.0from
feature/RDKEMW-22188_xoeref

Conversation

@dp0000

@dp0000 dp0000 commented Aug 17, 2026

Copy link
Copy Markdown

No description provided.

Copilot AI lite review requested due to automatic review settings August 17, 2026 07:31
@dp0000
dp0000 requested a review from a team as a code owner August 17, 2026 07:31

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the default middleware IPK feed configuration by changing the release identifier used in feed URLs and switching the base artifact directory from the release feed to the debug feed.

Changes:

  • Update RELEASE_NUM from a semantic version to a ticket/build identifier.
  • Switch middleware and OSS middleware IPK feed base paths from middleware-rel/... to middleware-dbg/....

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.

File Description
conf/machine/include/middleware.inc Changes the default release identifier and the base feed directory used to construct middleware IPK feed URLs.
conf/machine/include/oss_mw.inc Switches the OSS middleware feed base directory used to construct OSS IPK feed URLs.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

PACKAGE_EXTRA_ARCHS:append = " ${MIDDLEWARE_ARCH}"

RELEASE_NUM = "8.4.4.18"
RELEASE_NUM = "RDKEMW-22188_xi"
RELEASE_NUM = "RDKEMW-22188_xi"

MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}"
MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}"
PACKAGE_EXTRA_ARCHS:append = " ${MW_OSS} "
OPKG_ARCH_PRIORITY:${MW_OSS} = "205"
MW_OSS_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}"
MW_OSS_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}"
Copilot AI review requested due to automatic review settings August 17, 2026 07:34

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.

Suppressed comments (2)

conf/machine/include/middleware.inc:8

  • RELEASE_NUM is assigned with = which forces this value even when a build wants to override it (e.g., via distro/machine/local.conf). If this is meant to be a default for the feed path, prefer a weak assignment (?=) to keep builds configurable.
RELEASE_NUM = "RDKEMW-22188_xi"

conf/machine/include/oss_mw.inc:6

  • MW_OSS_IPK_SERVER_PATH is set with a strong = assignment, unlike MW_IPK_SERVER_PATH which uses ?=. Using ?= here too would make the OSS feed URL overrideable in machine/distro/local config when needed (e.g., pointing to a mirror).
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}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants