mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-06 04:49:29 +00:00
Upgrade to release 4.7.1: - Change log: https://pyropus.ca./software/memtester/CHANGELOG Version 4.7.1 16 December 2024 -fix compile error with stricter C23/gcc-15 due to incompatible type declaration. Thanks: Rudi Heitbaum. Version 4.7.0 28 November 2024 -fix alignment issue causing crash when specifying a memory amount to test that is more than the minimum 1 page of memory, but less than 2 full pages. Thanks: Erwan Szymanski. Also reported by Chenghan Lee and K R Pallavi. -add `-u` option to allow uncached memory semantics on some systems when using the -p option. Thanks: Florian Fainelli. -fix manpage highlighting of args. Thanks: László Böszörményi. -add missing option documentation to man page. Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
744 B
BlitzBasic
25 lines
744 B
BlitzBasic
SUMMARY = "Utility to test for faulty memory subsystem"
|
|
HOMEPAGE = "http://pyropus.ca/software/memtester/"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-2.0-only"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
|
|
|
SRC_URI = "http://pyropus.ca/software/memtester/old-versions/${BP}.tar.gz \
|
|
file://Makefile.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "e427de663f7bd22d1ebee8af12506a852c010bd4fcbca1e0e6b02972d298b5bb"
|
|
|
|
do_compile () {
|
|
echo '${CC} ${CFLAGS} -DPOSIX -c' > conf-cc
|
|
echo '${CC} ${LDFLAGS}' > conf-ld
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -d ${D}${mandir}/man8
|
|
install -m 0755 memtester ${D}${bindir}/
|
|
install -m 0755 memtester.8 ${D}${mandir}/man8/
|
|
}
|