From b035e04b7f5c5017cf1e83ab4a7ba312d4e86795 Mon Sep 17 00:00:00 2001 From: acheri988 Date: Thu, 17 Jul 2025 14:00:34 -0400 Subject: [PATCH 1/2] RDKEMW-3037: Middleware CI manifests with the common us tv config Reason for change: Middleware CI manifests with the common us tv config premerge CI for element. Add meta-image-assembler for uniform build job Test Procedure: None Risks: Low Signed-off-by:Anooj Cheriyan --- conf/template/bblayers.conf.sample | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf/template/bblayers.conf.sample b/conf/template/bblayers.conf.sample index 750fdf031..942d731cd 100644 --- a/conf/template/bblayers.conf.sample +++ b/conf/template/bblayers.conf.sample @@ -59,6 +59,8 @@ BBLAYERS =+ " \ ${@d.getVar('MANIFEST_PATH_RDK_CPC_HALIF_HEADERS') if d.getVar('MANIFEST_PATH_RDK_CPC_HALIF_HEADERS') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_RDK_CPC_HALIF_HEADERS') + '/conf/layer.conf') else ''} \ ${@d.getVar('MANIFEST_PATH_RDK_TOOLS') if d.getVar('MANIFEST_PATH_RDK_TOOLS') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_RDK_TOOLS') + '/conf/layer.conf') else ''} \ ${@d.getVar('MANIFEST_PATH_MIDDLEWARE_BRINGUP') if d.getVar('MANIFEST_PATH_MIDDLEWARE_BRINGUP') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_MIDDLEWARE_BRINGUP') + '/conf/layer.conf') else ''} \ + ${@d.getVar('MANIFEST_PATH_RDK_IMAGES') if d.getVar('MANIFEST_PATH_RDK_IMAGES') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_RDK_IMAGES') + '/conf/layer.conf') else ''} \ + ${@d.getVar('MANIFEST_PATH_CSPC_IMAGES') if d.getVar('MANIFEST_PATH_CSPC_IMAGES') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_CSPC_IMAGES') + '/conf/layer.conf') else ''} \ " # Config layers: generic From 823cbc0dee1daacb2a5760dec9e46bb679ba9a4d Mon Sep 17 00:00:00 2001 From: sindhu-krishnan <102755514+sindhu-krishnan@users.noreply.github.com> Date: Mon, 21 Jul 2025 13:53:28 +0530 Subject: [PATCH 2/2] RDK-57964 : Integrate Telemetry T2 for systimemgr (#156) --- recipes-common/systimemgr/systimemgr_git.bb | 3 ++- recipes-common/systimemgr/systimemgrfactory_git.bb | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/recipes-common/systimemgr/systimemgr_git.bb b/recipes-common/systimemgr/systimemgr_git.bb index c7bd53073..63fe8e8d8 100755 --- a/recipes-common/systimemgr/systimemgr_git.bb +++ b/recipes-common/systimemgr/systimemgr_git.bb @@ -5,7 +5,7 @@ DESCRIPTION = "Timer , publishing and subscription interfaces." LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" -DEPENDS = "systimemgrinetrface systimemgrfactory rdk-logger libsyswrapper wpeframework-clientlibraries" +DEPENDS = "systimemgrinetrface systimemgrfactory rdk-logger libsyswrapper wpeframework-clientlibraries telemetry" SRC_URI = "${CMF_GITHUB_ROOT}/systemtimemgr;${CMF_GITHUB_SRC_URI_SUFFIX};name=systemtimemgr" @@ -30,6 +30,7 @@ SYSLOG-NG_LOGRATE_systimemgr = "low" RDEPENDS:${PN} += "systimemgrfactory" +EXTRA_OECONF = "--enable-t2api=yes" do_install:append() { install -d ${D}${systemd_unitdir}/system install -d ${D}${systemd_unitdir}/system/systimemgr.service.d diff --git a/recipes-common/systimemgr/systimemgrfactory_git.bb b/recipes-common/systimemgr/systimemgrfactory_git.bb index be7e93116..8232ed8fc 100755 --- a/recipes-common/systimemgr/systimemgrfactory_git.bb +++ b/recipes-common/systimemgr/systimemgrfactory_git.bb @@ -5,7 +5,7 @@ DESCRIPTION = "Timer , publishing and subscription interfaces." LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://../LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" -DEPENDS = "systimemgrinetrface iarmbus jsonrpc virtual/mfrlib rdk-logger" +DEPENDS = "systimemgrinetrface iarmbus jsonrpc virtual/mfrlib rdk-logger telemetry" SRC_URI = "${CMF_GITHUB_ROOT}/systemtimemgr;${CMF_GITHUB_SRC_URI_SUFFIX};name=systemtimemgrfactory" @@ -31,5 +31,4 @@ inherit autotools pkgconfig RDEPENDS:${PN} += " jsonrpc curl jsoncpp " DEPENDS += " iarmmgrs wpeframework wpeframework-clientlibraries" -EXTRA_OECONF:append = " --enable-wpevgdrm --enable-dtt " - +EXTRA_OECONF:append = " --enable-wpevgdrm --enable-dtt --enable-t2api=yes"