mirror of
https://git.yoctoproject.org/poky
synced 2026-03-29 23:02:20 +02:00
Due to recipe packagegroup-core-tools-testapps run time depend on package kexec and recipe kexec-tools does not support loongarch64, then skip KEXECTOOLS for loongarch64 $ echo "MACHINE = 'qemuloongarch64'" >> conf/local.conf $ bitbake world |ERROR: Nothing RPROVIDES 'kexec' (but oe-core/meta/recipes-core/packagegroups/ packagegroup-core-tools-testapps.bb RDEPENDS on or otherwise requires it) |kexec-tools RPROVIDES kexec but was skipped: incompatible with host loongarch64-wrs-linux (not in COMPATIBLE_HOST) |NOTE: Runtime target 'kexec' is unbuildable, removing... |Missing or unbuildable dependency chain was: ['kexec'] |ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. |Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'packagegroup-core-tools-testapps', 'kexec'] (From OE-Core rev: 37ff515da6e13126f8822b3a55e44cdc62882a51) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
62 lines
1.2 KiB
BlitzBasic
62 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} = "\
|
|
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} \
|
|
"
|