Skip to content
Open
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
9 changes: 9 additions & 0 deletions recipes-devtools/meminsight/files/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
  "name": "meminsight-app",
  "description": "Performance Monitoring tool - meminsight",
  "version": "1.0.0",
  "contents": ["meminsight-pkg.tar"],
Comment on lines +1 to +5
  "size": "72K",
"installScript": "/etc/rdm/post-services/start_meminsight.sh"
}
Comment on lines +1 to +8
Comment on lines +1 to +8
Comment on lines +1 to +8

Comment on lines +1 to +9
11 changes: 8 additions & 3 deletions recipes-devtools/meminsight/files/start_meminsight.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
# limitations under the License.
##########################################################################

SRC_BIN="/media/apps/meminsight/usr/bin/meminsight"
DST_BIN="/run/meminsight/usr/bin/meminsight"
RFC_PARAM="Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Feature.meminsight.Trigger"

# Load DEVICE_TYPE
if [ -f /etc/device.properties ]; then
Expand All @@ -44,6 +41,14 @@ case "$DEVICE_TYPE" in
;;
esac

APP_HOME_DIR=/media/apps/${MODEL_NUM}-meminsight
rm -rf /media/apps/meminsight
ln -snf "$APP_HOME_DIR" /media/apps/meminsight
Comment on lines +44 to +46
Comment on lines +44 to +46
Comment on lines +44 to +46

Comment on lines +44 to +47
SRC_BIN="/media/apps/meminsight/usr/bin/meminsight"
DST_BIN="/run/meminsight/usr/bin/meminsight"
RFC_PARAM="Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Feature.meminsight.Trigger"
Comment on lines +48 to +50
Comment on lines +44 to +50
Comment on lines +48 to +50

log_info() {
echo "[start_meminsight] [INFO] $*" >> $RDM_LOG_FILE
}
Expand Down
1 change: 1 addition & 0 deletions recipes-devtools/meminsight/meminsight_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ SRC_URI:append = " file://meminsight-runner.service \
file://meminsight-upload.service \
file://meminsight-upload.path \
file://upload_MemReports.sh \
file://package.json \
"
Comment on lines 18 to 22
Comment on lines 18 to 22
Comment on lines 20 to 22

# May 25, 2026
Expand Down
4 changes: 2 additions & 2 deletions recipes-support/rdmagent/rdmagent.bb
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ DEPENDS += "rbus"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=8700a1d105cac2a90d4f51290ac6e466"

PV = "2.2.2"
PV = "2.3.0"
PR = "r0"
PACKAGE_ARCH = "${MIDDLEWARE_ARCH}"

# This tells bitbake where to find the files we're providing on the local filesystem
FILESEXTRAPATHS:prepend := "${THISDIR}:"

SRCREV = "871e274c8b531bfce3c242f46b1a16c8f2609463"
SRCREV = "069aaab56ce56cc6c9695c1bab860abfa7162260"
SRC_URI = "${CMF_GITHUB_ROOT}/rdm-agent;${CMF_GITHUB_SRC_URI_SUFFIX};name=rdmagent"
SRCREV_FORMAT = "rdmagent"

Expand Down
Loading