mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
20 lines
524 B
BlitzBasic
20 lines
524 B
BlitzBasic
SUMMARY = "Get SD card health data"
|
|
HOMEPAGE = "https://github.com/Ognian/sdmon"
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "git://github.com/Ognian/sdmon;protocol=https;branch=master"
|
|
|
|
PV = "0.9.0"
|
|
SRCREV = "4dff9b690e8d4454fada6abfbb6b32fcb794968c"
|
|
|
|
|
|
do_compile() {
|
|
oe_runmake -C ${S}/src CC="${CC}" CFLAGS="${CFLAGS} -D_REENTRANT -DVERSION=\"\\\"${PV}\\\"\"" LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
do_install() {
|
|
install -Dm 0755 ${S}/src/sdmon ${D}${bindir}/sdmon
|
|
}
|