- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
21 lines
549 B
BlitzBasic
21 lines
549 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.8.1+git"
|
|
SRCREV = "ef1aec457f04a50721f0259651cca9c946f11390"
|
|
|
|
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
|
|
}
|