Files
poky/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
Alexander Kanavin e8db9d1eae blktool: remove the recipe
It was created in 2004 as an alternative to hdparm and never updated since
(while hdparm remains in active development).

(From OE-Core rev: 54c1243a259a2f6407c0202d03414fc5272b2d90)

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2025-01-10 11:10:00 +00:00

61 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} \
"