mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

Some of them were introduced by mass-removal of S = WORKDIR/git assignments; rather than try to fix up (or redo) just these, I've run this sed command over the whole tree: sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc` The rationale is that more than one empty line is wasting vertical screen space, and does nothing for readability. (From OE-Core rev: cedc4ff7c9bcfb22a20e43e47f9759f4007a4f1a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> 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:mipsarcho32 ?= ""
|
|
KEXECTOOLS:nios2 ?= ""
|
|
KEXECTOOLS:riscv64 ?= ""
|
|
KEXECTOOLS:riscv32 ?= ""
|
|
KEXECTOOLS:loongarch64 ?= ""
|
|
|
|
# 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} = "\
|
|
${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} \
|
|
"
|