Skip to content

RDKEMW-12035: [RDKAppManagers] Add support for reading yaml files#345

Open
ABIRAMI-S wants to merge 2 commits intodevelopfrom
topic/RDKEMW-12035
Open

RDKEMW-12035: [RDKAppManagers] Add support for reading yaml files#345
ABIRAMI-S wants to merge 2 commits intodevelopfrom
topic/RDKEMW-12035

Conversation

@ABIRAMI-S
Copy link

No description provided.

Copilot AI review requested due to automatic review settings February 10, 2026 10:11
@ABIRAMI-S ABIRAMI-S requested a review from a team as a code owner February 10, 2026 10:11
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds the YAML C++ runtime dependency to the OSS layer package set so images built with this layer include yaml-cpp, supporting components that need to read YAML at runtime.

Changes:

  • Add yaml-cpp to the packagegroup-oss-layer runtime dependencies.
  • Register yaml-cpp package revision and architecture settings in package_revisions_oss.inc.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
recipes-core/packagegroups/packagegroup-oss-layer.bb Adds yaml-cpp to the OSS layer packagegroup runtime dependencies.
conf/include/package_revisions_oss.inc Adds PR/PACKAGE_ARCH entries for pn-yaml-cpp.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 234 to 238
xmlsec1 \
yajl \
zstd \
yaml-cpp \
"
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

RDEPENDS:${PN} list in this section appears to be kept in alphabetical order (e.g., xmlsec1, yajl, zstd). yaml-cpp is currently placed after zstd, which breaks the ordering and makes future maintenance/search harder. Consider moving yaml-cpp to be adjacent to the other ya* entries (e.g., after yajl and before zstd).

Copilot uses AI. Check for mistakes.
Comment on lines 942 to +946
PR:pn-zstd ?= "r0"
PACKAGE_ARCH:pn-zstd ?= "${OSS_LAYER_ARCH}"

PR:pn-yaml-cpp ?= "r0"
PACKAGE_ARCH:pn-yaml-cpp ?= "${OSS_LAYER_ARCH}"
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

This PR/PACKAGE_ARCH block is sorted alphabetically by pn-* in the surrounding context (…pn-xz, pn-yajl, pn-zlib, pn-zstd). The new pn-yaml-cpp entries are appended after pn-zstd, which breaks that ordering. Please move PR:pn-yaml-cpp / PACKAGE_ARCH:pn-yaml-cpp to the correct position near the other pn-ya* entries (e.g., after pn-yajl and before pn-zlib).

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments