mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-24 19:07:16 +00:00
fc78d37ff0
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>
24 lines
550 B
BlitzBasic
24 lines
550 B
BlitzBasic
SUMMARY = "Touchscreen calibration data"
|
|
SECTION = "base"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4b5fcfc87fb615860d398b5e38685edf"
|
|
|
|
SRC_URI = "file://pointercal \
|
|
file://COPYING"
|
|
|
|
S = "${UNPACKDIR}"
|
|
|
|
do_install() {
|
|
# Only install file if it has a contents
|
|
if [ -s ${S}/pointercal ]; then
|
|
install -d ${D}${sysconfdir}/
|
|
install -m 0644 ${S}/pointercal ${D}${sysconfdir}/
|
|
fi
|
|
}
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|