mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 10:02:22 +01:00
Allow references to the old task packages to continue to work. This does not add RPROVIDES for everything, just those packages that are likely to have been referred to. (From OE-Core rev: b41c45972a6d359f034615471959c84aee2bc456) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
43 lines
751 B
BlitzBasic
43 lines
751 B
BlitzBasic
#
|
|
# Copyright (C) 2008 OpenedHand Ltd.
|
|
#
|
|
|
|
SUMMARY = "Testing tools/applications"
|
|
LICENSE = "MIT"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
# For backwards compatibility after rename
|
|
RPROVIDES_${PN} = "task-core-tools-testapps"
|
|
|
|
# kexec-tools doesn't work on Mips
|
|
KEXECTOOLS ?= "kexec"
|
|
KEXECTOOLS_mips ?= ""
|
|
KEXECTOOLS_mipsel ?= ""
|
|
KEXECTOOLS_powerpc ?= ""
|
|
KEXECTOOLS_e5500-64b ?= ""
|
|
|
|
RDEPENDS_${PN} = "\
|
|
blktool \
|
|
fstests \
|
|
tslib-calibrate \
|
|
tslib-tests \
|
|
lrzsz \
|
|
${KEXECTOOLS} \
|
|
alsa-utils-amixer \
|
|
alsa-utils-aplay \
|
|
owl-video \
|
|
gst-meta-video \
|
|
gst-meta-audio \
|
|
mesa-demos \
|
|
x11perf \
|
|
xrestop \
|
|
xwininfo \
|
|
xprop \
|
|
xvideo-tests \
|
|
clutter-box2d \
|
|
ltp \
|
|
"
|