mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
5e8f4720aa
quilt complains that both patches have already been applied, so drop them. Signed-off-by: S. Lockwood-Childs <sjl@vctlabs.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
28 lines
720 B
BlitzBasic
28 lines
720 B
BlitzBasic
SUMMARY = "Simple program to read/write from/to any location in memory"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://devmem2.c;endline=38;md5=a9eb9f3890384519f435aedf986297cf"
|
|
PR = "r7"
|
|
|
|
SRC_URI = "http://www.free-electrons.com/pub/mirror/devmem2.c;downloadfilename=devmem2-new.c \
|
|
"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
CFLAGS += "-DFORCE_STRICT_ALIGNMENT"
|
|
|
|
python do_unpack:append() {
|
|
os.rename("devmem2-new.c", "devmem2.c")
|
|
}
|
|
|
|
do_compile() {
|
|
${CC} -o devmem2 devmem2.c ${CFLAGS} ${LDFLAGS}
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install devmem2 ${D}${bindir}
|
|
}
|
|
|
|
SRC_URI[md5sum] = "e23f236e94be4c429aa1ceac0f01544b"
|
|
SRC_URI[sha256sum] = "3b15515693bae1ebd14d914e46d388edfec2175829ea1576a7a0c8606ebbe639"
|