Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions conf/template/bblayers.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion recipes-common/systimemgr/systimemgr_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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
Expand Down
5 changes: 2 additions & 3 deletions recipes-common/systimemgr/systimemgrfactory_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Loading