Update middleware.inc#82
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the middleware IPK feed “release” identifier used to construct the artifact repository path for middleware packages.
Changes:
- Replaces the
RELEASE_NUMvalue inmiddleware.incfrom a version-like string to a JIRA/ticket-like identifier (RDKEMW-16432).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| PACKAGE_EXTRA_ARCHS:append = " ${MIDDLEWARE_ARCH}" | ||
|
|
||
| RELEASE_NUM = "8.5.3.0_B6" | ||
| RELEASE_NUM = "RDKEMW-16432" |
There was a problem hiding this comment.
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).
| 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" |
No description provided.