mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-26 21:38:19 +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>
26 lines
578 B
BlitzBasic
26 lines
578 B
BlitzBasic
SUMMARY = "read temperature sensors in a 1-Wire net"
|
|
SECTION = "util"
|
|
DEPENDS = "libusb1"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=44fee82a1d2ed0676cf35478283e0aa0"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/bcl/digitemp;branch=master;protocol=https \
|
|
file://0001-Fix-conflicting-prototype.patch \
|
|
"
|
|
|
|
SRCREV = "a162e63aad35358aab325388f3d5e88121606419"
|
|
|
|
|
|
EXTRA_OEMAKE = "ds9097 ds9097u \
|
|
SYSTYPE='Linux' \
|
|
"
|
|
do_configure() {
|
|
rm -f digitemp_*
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 digitemp_* ${D}${sbindir}
|
|
}
|