mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 07:19:39 +01:00
Chamelium is a hardware device that can be used for external display test automation [1]. It is disabled by default and can be turned on through PACKAGECONFIG. [1] https://www.chromium.org/chromium-os/testing/chamelium (From OE-Core rev: 35daa5c7c7ff317b625c463dd666f46e1dbb81a2) Signed-off-by: Arthur She <arthur.she@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
1.6 KiB
BlitzBasic
50 lines
1.6 KiB
BlitzBasic
SUMMARY = "IGT GPU Tools"
|
|
DESCRIPTION = "IGT GPU Tools is a collection of tools for development and testing of the DRM drivers"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=67bfee4df38fa6ecbe3a675c552d4c08"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
inherit meson
|
|
|
|
SRCREV = "d16ad07e7f2a028e14d61f570931c87fa5ce404c"
|
|
PV = "1.25+git${SRCPV}"
|
|
|
|
SRC_URI = "git://gitlab.freedesktop.org/drm/igt-gpu-tools.git;protocol=https"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS += "libdrm libpciaccess cairo udev glib-2.0 procps libunwind kmod openssl elfutils alsa-lib json-c bison-native"
|
|
RDEPENDS_${PN} += "bash"
|
|
RDEPENDS_${PN}-tests += "bash"
|
|
|
|
PACKAGE_BEFORE_PN = "${PN}-benchmarks ${PN}-tests"
|
|
|
|
PACKAGECONFIG[chamelium] = "-Dchamelium=enabled,-Dchamelium=disabled,gsl xmlrpc-c"
|
|
|
|
EXTRA_OEMESON = "-Ddocs=disabled -Drunner=enabled"
|
|
COMPATIBLE_HOST = "(x86_64.*|i.86.*|arm.*|aarch64).*-linux"
|
|
COMPATIBLE_HOST_libc-musl_class-target = "null"
|
|
SECURITY_LDFLAGS = "${SECURITY_X_LDFLAGS}"
|
|
|
|
gputools_sysroot_preprocess() {
|
|
rm -f ${SYSROOT_DESTDIR}${libdir}/pkgconfig/intel-gen4asm.pc
|
|
}
|
|
SYSROOT_PREPROCESS_FUNCS += "gputools_sysroot_preprocess"
|
|
|
|
do_install_append() {
|
|
install -d ${D}/usr/share/${BPN}/scripts
|
|
install ${S}/scripts/run-tests.sh ${D}/usr/share/${BPN}/scripts
|
|
install -d ${D}/usr/share/${BPN}/runner
|
|
install -D ${B}/runner/igt_runner ${D}/usr/share/${BPN}/runner
|
|
install -D ${B}/runner/igt_resume ${D}/usr/share/${BPN}/runner
|
|
}
|
|
|
|
FILES_${PN}-benchmarks += "${libexecdir}/${BPN}/benchmarks"
|
|
FILES_${PN}-tests += "\
|
|
${libexecdir}/${BPN}/*\
|
|
${datadir}/${BPN}/1080p-right.png\
|
|
${datadir}/${BPN}/1080p-left.png\
|
|
${datadir}/${BPN}/pass.png\
|
|
${datadir}/${BPN}/test-list.txt"
|