mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
a0782de16d
Changelog: ========== - Add support for Adata cards - Merge pull request - Fix type warnings - fixe types and count - Add support for Innodisk cards - Modify Adata code - Move SB code - Merge branch 'master' into J-Twin-patch-1 - Fix Maximum erase count for Transcend cards - Fix Maximum erase count for Transcend cards - Merge branch 'master' into master - remove "Z" from local time timestamp - merging changes from FreeBSD support - Merge remote-tracking branch 'origin/master' Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
545 B
BlitzBasic
21 lines
545 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"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
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
|
|
}
|