-
Notifications
You must be signed in to change notification settings - Fork 8
RDKEMW-16179: Dobby patch for removing swap limits #72
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: support/8.4.4.0
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.4.4.8" | ||||||||
| RELEASE_NUM = "hotfix/RDKEMW-16179" | ||||||||
|
|
||||||||
| MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}" | ||||||||
| MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}" | ||||||||
|
||||||||
| MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}" | |
| MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}" | |
| MW_IPK_DEBUG_PATH ?= "middleware-dbg/${RELEASE_NUM}" |
Copilot
AI
Mar 27, 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.
PR title mentions a "Dobby patch for removing swap limits", but the changes here only repoint middleware/OSS IPK feed URLs to a hotfix/debug location. If the swap-limit removal is expected to happen via the artifacts in that feed, it would help to clarify this in the PR description (or rename the PR) so reviewers can verify the right behavior is being pulled in.
| 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_PATH ?= "middleware-dbg/${RELEASE_NUM}" | |
| MW_OSS_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}" |
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 to a hotfix branch-style value (hotfix/RDKEMW-16179) instead of a release version. Because this include is shared configuration, hardcoding a temporary hotfix identifier here makes the layer non-reproducible for other releases and may break downstream consumers that expect a numeric release (and the embedded/changes the feed URL structure). Consider making this overrideable (e.g.,RELEASE_NUM ?= ...) and/or introducing a separate variable for hotfix feeds so production builds can keep using the normal release number by default.