blob: 2848e1cd2cd8e3f7525d7b878b55c6c43288ec9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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"
do_install() {
install -d ${D}${bindir}
install -m 0755 rwmem ${D}${bindir}
}
|