mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
We've been removing PR values from recipes at upgrade time for a while. In general anyone maintaining a binary distro would end up having to curate these themselves so the values in OE-Core aren't really that useful anymore. In many ways it makes sense to clear out the remaining ones (which are mostly for 'config' recipes that are unlikely to increase in PV) and leave a clean slate for anyone implementing a binary distro config. References are left in meta-selftest since the tests there do involve them and their removal upon upgrade. (From OE-Core rev: d4c346e8ab8f3cae25d1b01c7331ed9f6d4f96ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
60 lines
1.2 KiB
BlitzBasic
60 lines
1.2 KiB
BlitzBasic
#
|
|
# Copyright (C) 2008 OpenedHand Ltd.
|
|
#
|
|
|
|
SUMMARY = "Testing tools/applications"
|
|
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup
|
|
|
|
# kexec-tools doesn't work on e5500-64b, microblaze and nios2 yet
|
|
KEXECTOOLS ?= "kexec"
|
|
KEXECTOOLS:e5500-64b ?= ""
|
|
KEXECTOOLS:microblaze ?= ""
|
|
KEXECTOOLS:nios2 ?= ""
|
|
KEXECTOOLS:riscv64 ?= ""
|
|
KEXECTOOLS:riscv32 ?= ""
|
|
|
|
# go does not support ppc32, only ppc64
|
|
# https://github.com/golang/go/issues/22885
|
|
# gccgo may do better
|
|
GOTOOLS ?= "go-helloworld"
|
|
GOTOOLS:powerpc ?= ""
|
|
GOTOOLS:riscv32 ?= ""
|
|
|
|
GSTEXAMPLES ?= "gst-examples"
|
|
GSTEXAMPLES:riscv64 = ""
|
|
|
|
X11GLTOOLS = "\
|
|
mesa-demos \
|
|
"
|
|
|
|
3GTOOLS = "\
|
|
ofono-tests \
|
|
"
|
|
|
|
X11TOOLS = "\
|
|
${GSTEXAMPLES} \
|
|
x11perf \
|
|
xrestop \
|
|
xwininfo \
|
|
xprop \
|
|
"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
blktool \
|
|
${KEXECTOOLS} \
|
|
alsa-utils-amixer \
|
|
alsa-utils-aplay \
|
|
ltp \
|
|
connman-tools \
|
|
connman-tests \
|
|
connman-client \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11', "${X11TOOLS}", "", d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', "${X11GLTOOLS}", "", d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', '3g', "${3GTOOLS}", "", d)} \
|
|
${GOTOOLS} \
|
|
"
|