summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb
diff options
context:
space:
mode:
authorAshwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com>2026-06-02 11:43:13 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-06-14 23:07:49 -0700
commit6d5577066c4747e28974fc5a6671762966a6f8cb (patch)
tree23076c60ef666bd5d8054a5f048b2c339e83c06e /meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb
parentc3e430ec85022244d2f67ccd5e473bf6abd21f2c (diff)
downloadmeta-openembedded-6d5577066c4747e28974fc5a6671762966a6f8cb.tar.gz
ramspeed: Add recipe for cache and memory benchmarking tool
Add a new recipe for ramspeed, a lightweight benchmark utility that measures cache and memory bandwidth using a set of synthetic tests. Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> ramspeed: Add recipe for cache and memory benchmarking tool Add a new recipe for ramspeed, a lightweight benchmark utility that measures cache and memory bandwidth using a set of synthetic tests. Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb')
-rw-r--r--meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb b/meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb
new file mode 100644
index 0000000000..db5e16d8f6
--- /dev/null
+++ b/meta-oe/recipes-benchmark/ramspeed/ramspeed_git.bb
@@ -0,0 +1,21 @@
1SUMMARY = "Cache and memory benchmarking tool"
2DESCRIPTION = "RAMspeed is a micro-benchmark for measuring cache and memory bandwidth"
3HOMEPAGE = "https://github.com/cruvolo/ramspeed"
4
5LICENSE = "Alasir"
6LIC_FILES_CHKSUM = "file://LICENCE;md5=92cffec6695a20eab8d0e4770f4e9353"
7LICENSE_FLAGS = "commercial"
8
9SRC_URI = "git://github.com/cruvolo/ramspeed.git;protocol=https;branch=master"
10SRCREV = "f3a766dc4f89cee97b5283d5c6bdf8b8e3474813"
11
12do_compile() {
13 ${CC} ${CFLAGS} ${LDFLAGS} \
14 ramspeed.c intmem.c fltmem.c intmark.c fltmark.c \
15 -o ramspeed
16}
17
18do_install() {
19 install -d ${D}${bindir}
20 install -m 0755 ramspeed ${D}${bindir}/
21}