-
Notifications
You must be signed in to change notification settings - Fork 8
Feature/rdkemw 17411 ref #97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,9 +5,9 @@ RDK_MW_ARCH ??= "${MACHINE}" | |||||||
| MIDDLEWARE_ARCH = "${RDK_MW_ARCH}-middleware" | ||||||||
| PACKAGE_EXTRA_ARCHS:append = " ${MIDDLEWARE_ARCH}" | ||||||||
|
|
||||||||
| RELEASE_NUM = "8.5.3.0" | ||||||||
| RELEASE_NUM = "RDKEMW-17411_Ref" | ||||||||
|
||||||||
| RELEASE_NUM = "RDKEMW-17411_Ref" | |
| RELEASE_NUM ?= "RDKEMW-17411_Ref" |
Copilot
AI
Apr 22, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MW_IPK_PATH is switched from "middleware-rel" to "middleware-dbg", which means the build will pull middleware IPKs from the debug feed by default. Given this layer is named "middleware-release" (conf/layer.conf), this looks like an unintended operational change for release builds; consider keeping the default on the release feed and gating debug feeds behind an explicit opt-in (e.g., a DISTRO_FEATURE/variable override).
| MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}" | |
| MW_IPK_FEED ?= "middleware-rel" | |
| MW_IPK_PATH ?= "${MW_IPK_FEED}/${RELEASE_NUM}" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,6 @@ MW_EXTENSION = "-middleware" | |||||
| MW_OSS = "${@get_oss_arch(d)}${MW_EXTENSION}" | ||||||
| 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}" | ||||||
| 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/${BUILD_VARIANT}" | |
| 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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RELEASE_NUMis now set toRDKEMW-17411_ref, but the repository CHANGELOG’s latest section is still8.5.3.0. IfRELEASE_NUMis intended to represent the middleware release version, this creates a documentation mismatch; either update the changelog to match, or clarify (e.g., via naming/comment) thatRELEASE_NUMis an artifacts tag/branch identifier rather than the product version.