From 9aac69cf99f5c71c51de62cba577fbd817152f42 Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 7 Apr 2015 22:41:25 +0000 Subject: [PATCH] rwmem: add rwmem tool https://github.com/tomba/rwmem Signed-off-by: Denys Dmytriyenko --- recipes-bsp/rwmem/rwmem_1.1.bb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 recipes-bsp/rwmem/rwmem_1.1.bb 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 @@ +SUMMARY = "A small tool to read/write memory" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +SRCREV = "54904b8873b265d8f1faf82617c2f04814c102c6" +SRC_URI = "git://github.com/tomba/rwmem.git" + +S = "${WORKDIR}/git" + +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" + +do_install() { + install -d ${D}${bindir} + install -m 0755 rwmem ${D}${bindir} +}