Skip to content

Feature/rdkemw 16166#80

Open
Gnanesha wants to merge 4 commits intosupport/8.5.3.0from
feature/RDKEMW-16166
Open

Feature/rdkemw 16166#80
Gnanesha wants to merge 4 commits intosupport/8.5.3.0from
feature/RDKEMW-16166

Conversation

@Gnanesha
Copy link
Copy Markdown

@Gnanesha Gnanesha commented Apr 8, 2026

No description provided.

@Gnanesha Gnanesha requested a review from a team as a code owner April 8, 2026 18:32
Copilot AI review requested due to automatic review settings April 8, 2026 18:32
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Updates the middleware IPK feed configuration to point at a specific debug artifact drop associated with RDKEMW-16166v5.

Changes:

  • Updates RELEASE_NUM to RDKEMW-16166v5.
  • Redirects middleware and OSS middleware IPK feed paths from release-based locations to a hard-coded debug artifact path.

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 default middleware feed version/path to a ticket-specific debug artifacts location.
conf/machine/include/oss_mw.inc Changes OSS middleware feed path to the same ticket-specific debug artifacts location.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread conf/machine/include/middleware.inc Outdated
RELEASE_NUM = "RDKEMW-16166v5"

MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}"
MW_IPK_PATH ?= "middleware-dbg/RDKEMW-16166v5"
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

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

RELEASE_NUM is now effectively unused because MW_IPK_PATH is hard-coded to a specific ticket/version path. Either parameterize the path again (e.g., derive it from RELEASE_NUM) or remove RELEASE_NUM to avoid dead/duplicated configuration that will drift over time.

Suggested change
MW_IPK_PATH ?= "middleware-dbg/RDKEMW-16166v5"
MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}"

Copilot uses AI. Check for mistakes.
Comment thread conf/machine/include/middleware.inc Outdated
RELEASE_NUM = "RDKEMW-16166v5"

MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}"
MW_IPK_PATH ?= "middleware-dbg/RDKEMW-16166v5"
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

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

This change switches the default feed from middleware-rel/${RELEASE_NUM} to a hard-coded middleware-dbg/RDKEMW-16166v5 location. If this is only intended for a specific debug build, consider keeping the release path as the default and gating the debug feed behind a separate variable/feature (or making it an override in a machine/distro config) to avoid unintentionally pulling debug artifacts in normal builds.

Suggested change
MW_IPK_PATH ?= "middleware-dbg/RDKEMW-16166v5"
MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}"

Copilot uses AI. Check for mistakes.
Comment thread conf/machine/include/oss_mw.inc Outdated
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/RDKEMW-16166v5"
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

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

MW_OSS_IPK_PATH is hard-coded to the same ticket-specific debug path as MW_IPK_PATH in middleware.inc, which duplicates configuration and risks the two diverging. Consider deriving MW_OSS_IPK_PATH from a shared variable (e.g., MW_IPK_PATH/RELEASE_NUM) so OSS and non-OSS feeds stay consistent.

Suggested change
MW_OSS_IPK_PATH ?= "middleware-dbg/RDKEMW-16166v5"
MW_OSS_IPK_PATH ?= "${MW_IPK_PATH}"

Copilot uses AI. Check for mistakes.
Copilot AI review requested due to automatic review settings April 8, 2026 18:37
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

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.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

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.

3 participants