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
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ RDEPENDS:${PN} = " \
entservices-casting \
entservices-connectivity \
entservices-deviceanddisplay \
entservices-infra \
entservices-rdkappmanagers \
entservices-appgateway \
entservices-inputoutput \
Expand All @@ -73,6 +72,8 @@ RDEPENDS:${PN} = " \
entservices-firmwaredownload \
entservices-firmwareupdate \
entservices-frontpanel \
entservices-telemetry \
Copy link

Copilot AI Feb 16, 2026

Choose a reason for hiding this comment

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

entservices-telemetry is added to RDEPENDS, but there is no recipe/package in this layer that provides it (a provider for this package name can’t be found in the repository). If the corresponding layer/repo isn’t always present in the build, this packagegroup will cause a build failure (“Nothing RPROVIDES entservices-telemetry”). Either add the recipe/provider to the build, or guard this dependency behind an appropriate feature/layer presence check so builds without entservices-telemetry still succeed.

Suggested change
entservices-telemetry \
${@bb.utils.contains('DISTRO_FEATURES', 'entservices-telemetry', 'entservices-telemetry', '', d)} \

Copilot uses AI. Check for mistakes.
entservices-infra \
entservices-mediaanddrm-screencapture \
${@bb.utils.contains('DISTRO_FEATURES', 'DAC_SUPPORT', 'entservices-lisa', '', d)} \
rdksysctl \
Expand Down