summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-bsp/rwmem/rwmem_1.1.bb15
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes-bsp/rwmem/rwmem_1.1.bb b/recipes-bsp/rwmem/rwmem_1.1.bb
new file mode 100644
index 00000000..1825e18f
--- /dev/null
+++ b/recipes-bsp/rwmem/rwmem_1.1.bb
@@ -0,0 +1,15 @@
1SUMMARY = "A small tool to read/write memory"
2LICENSE = "GPLv2+"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
4
5SRCREV = "54904b8873b265d8f1faf82617c2f04814c102c6"
6SRC_URI = "git://github.com/tomba/rwmem.git"
7
8S = "${WORKDIR}/git"
9
10EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc"
11
12do_install() {
13 install -d ${D}${bindir}
14 install -m 0755 rwmem ${D}${bindir}
15}