Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/machine/include/middleware.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RDK_MW_ARCH ??= "${MACHINE}"
MIDDLEWARE_ARCH = "${RDK_MW_ARCH}-middleware"
PACKAGE_EXTRA_ARCHS:append = " ${MIDDLEWARE_ARCH}"

RELEASE_NUM = "8.5.3.0_B6"
RELEASE_NUM = "RDKEMW-16432"
Copy link

Copilot AI Apr 9, 2026

Choose a reason for hiding this comment

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

RELEASE_NUM is used to construct MW_IPK_PATH/MW_IPK_SERVER_PATH, so changing it from a version-like value (e.g., 8.x.y...) to a ticket ID (RDKEMW-16432) changes the resolved artifact feed URL. If the artifact repository directories are versioned (as implied by the previous value and CHANGELOG version headings), this will likely point opkg at a non-existent feed and break builds. Consider keeping RELEASE_NUM as the actual middleware release version (and, if needed, track the ticket ID in a separate variable/comment).

Suggested change
RELEASE_NUM = "RDKEMW-16432"
# Keep RELEASE_NUM as the versioned middleware release used by artifact feed paths.
# Track ticket/work-item references separately so feed URLs do not change unexpectedly.
MW_CHANGE_TICKET = "RDKEMW-16432"
RELEASE_NUM = "8.x.y"

Copilot uses AI. Check for mistakes.

MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}"
MW_IPK_SERVER_PATH ?= "${RDK_ARTIFACTS_BASE_URL}/${MW_IPK_PATH}/${RDK_MW_ARCH}/ipks/${BUILD_VARIANT}"
Expand Down
Loading