summaryrefslogtreecommitdiff
path: root/packages/memdev2/memdev2_1.0.0.bb
blob: 5476069e5b2f6f8fad51447b99f92effc649a765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DESCRIPTION = "Tool to read and write to arbitrary memory locations"
LICENSE = "GPL"
PR = "r0"

SRC_URI="http://free-electrons.com/pub/mirror/devmem2.c"

S = "${WORKDIR}"

do_compile () {
	${CC} -o devmem2 devmem2.c
}

do_install () {
	install -d ${D}${sbindir}
	install -m 0755 devmem2 ${D}${sbindir}/
}