-
Notifications
You must be signed in to change notification settings - Fork 8
RDKE-1066: metaChanges-donotomerge-8.5_2 #90
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.5.3.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.5.3.0" | ||||||
| RELEASE_NUM = "RDKE-1066_17A1" | ||||||
|
|
||||||
| MW_IPK_PATH ?= "middleware-rel/${RELEASE_NUM}" | ||||||
| MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}" | ||||||
|
Comment on lines
+8
to
+10
|
||||||
| MW_IPK_PATH ?= "middleware-dbg/${RELEASE_NUM}" | |
| MW_IPK_PATH ?= "${@('middleware-dbg' if d.getVar('BUILD_VARIANT') == 'dbg' else 'middleware-rel') + '/' + d.getVar('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_PATH ?= "middleware-dbg/${RELEASE_NUM}" | |
| MW_OSS_IPK_PATH ?= "${@('middleware-dbg/%s' if (d.getVar('BUILD_VARIANT') or '').lower() in ('dbg', 'debug') else 'middleware-rel/%s') % d.getVar('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 ticket/build identifier ("RDKE-1066_17A1"). Because this value is embedded into the feed URL, hardcoding a non-version string here makes the config branch-specific and easy to forget to revert, which can break consumers expecting a stable release layout. Consider keeping a version-like default and/or making this value overrideable via a separate variable (e.g., a CI-provided tag) rather than committing a ticket-specific value.