* Add a utility that allows creating variable cpu load which is useful for testing.
Signed-off-by: Chase Maupin <[email protected]> --- .../recipes-devtools/cpuloadgen/cpuloadgen_git.bb | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) create mode 100644 meta-arago-extras/recipes-devtools/cpuloadgen/cpuloadgen_git.bb diff --git a/meta-arago-extras/recipes-devtools/cpuloadgen/cpuloadgen_git.bb b/meta-arago-extras/recipes-devtools/cpuloadgen/cpuloadgen_git.bb new file mode 100644 index 0000000..a44083a --- /dev/null +++ b/meta-arago-extras/recipes-devtools/cpuloadgen/cpuloadgen_git.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "Utility to generate specified CPU Load" +HOMEPAGE = "https://github.com/ptitiano/cpuloadgen" + +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c6c2eb46c569d0cd7884089fea6b4f31" + +PV = "0.93" +PR = "r0" + +BRANCH ?= "master" +SRCREV ?= "301d69899d6f4d84f143e0ed86957eea416a27a6" + +SRC_URI = "git://github.com/ptitiano/cpuloadgen.git;protocol=git;branch=${BRANCH}" + +S = "${WORKDIR}/git" + +do_install () { + install -d ${D}${bindir} + oe_runmake DESTDIR=${D}${bindir} install +} -- 1.7.0.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
