statcol is a statistics collector application which can be used to get various statistics data like CPU load, DDR bandwidth, network speed, etc from various sources.
It allows to simply dump the data over command line or it can also be used to send to a websocket for visualization on a host machine. Signed-off-by: Nikhil Devshatwar <[email protected]> --- Notes: v2: Add CROSS_COMPILE to fix build issues on armv7 .../recipes-devtools/statcol/statcol.bb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 meta-arago-extras/recipes-devtools/statcol/statcol.bb diff --git a/meta-arago-extras/recipes-devtools/statcol/statcol.bb b/meta-arago-extras/recipes-devtools/statcol/statcol.bb new file mode 100644 index 00000000..bb841d08 --- /dev/null +++ b/meta-arago-extras/recipes-devtools/statcol/statcol.bb @@ -0,0 +1,20 @@ +SUMMARY = "Statistics collector application" + +LICENSE = "TI-TSPA" +LIC_FILES_CHKSUM = "file://LICENSE;md5=bb6bc27cd44417c389a180bd62f552a0" + +PROTOCOL = "git" +BRANCH = "master" +SRCREV = "6420b4e6d98dc2c6825557d7d6f56ffd52fd230c" +SRC_URI = "git://git.ti.com/glsdk/statcol.git;protocol=${PROTOCOL};branch=${BRANCH}" + +DEPENDS = "ti-rpmsg-char websocketd" +RDEPENDS_${PN} = "bash" + +S = "${WORKDIR}/git" + +EXTRA_OEMAKE += "SYSROOT=${STAGING_DIR_TARGET} CROSS_COMPILE=${TARGET_PREFIX}" + +do_install() { + DESTDIR=${D} make install +} -- 2.17.1 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
