aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2021-09-06 10:43:14 +0200
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2021-09-06 10:43:14 +0200
commit1974f4d0a87fc6fd99c8a05ea95fdcd6634a5ee2 (patch)
tree9d27bac393e0203e0da3914c5e708bfbb0234267
parent3772544b6fc6b8909fdc83ee1256f56e4c5fd620 (diff)
meta-oe: add mbw
It was merged upstream in meta-oe in c8992dc7710c (mbw: add new recipe) It's needed in some Linaro builds, so let's bring it to meta-backports. Change-Id: I2d2fa05946853fec841465918df6fb3f1d0bfb2c Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r--openembedded-layer/recipes-benchmark/mbw/mbw_git.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/openembedded-layer/recipes-benchmark/mbw/mbw_git.bb b/openembedded-layer/recipes-benchmark/mbw/mbw_git.bb
new file mode 100644
index 0000000..5ed726d
--- /dev/null
+++ b/openembedded-layer/recipes-benchmark/mbw/mbw_git.bb
@@ -0,0 +1,18 @@
+SUMMARY = "MBW determines the copy memory bandwidth available to userspace programs"
+HOMEPAGE = "http://github.com/raas/mbw"
+SECTION = "console/tests"
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://mbw.spec;beginline=1;endline=10;md5=bbb77813272134a5c461f71abe945bef"
+
+SRC_URI = "git://github.com/raas/${BPN}.git"
+
+SRCREV = "2a15026ff65160127204881263464b1740a57198"
+
+PV = "1.4+git${SRCPV}"
+
+S = "${WORKDIR}/git"
+
+do_install() {
+ install -d ${D}${bindir}
+ install -m 0755 ${B}/mbw ${D}${bindir}
+}