blob: 86ac7ff3644936bfcb51016064cbc65fec837fd3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 | #
# Copyright (C) 2008 Intel Corporation.
#
DESCRIPTION = "Debuggin and profiling tools tasks for Moblin"
PR = "r2"
PACKAGES = "\
    task-moblin-tools-debug \
    task-moblin-tools-debug-dbg \
    task-moblin-tools-debug-dev \
    task-moblin-tools-profile \
    task-moblin-tools-profile-dbg \
    task-moblin-tools-profile-dev \
    task-moblin-tools-testapps \
    task-moblin-tools-testapps-dbg \
    task-moblin-tools-testapps-dev \
    "
PACKAGE_ARCH = "${MACHINE_ARCH}"
ALLOW_EMPTY = "1"
RDEPENDS_task-moblin-tools-debug = "\
    gdb \
    gdbserver \
    strace"
RDEPENDS_task-moblin-tools-profile = "\
#    exmap-console \
#    exmap-server \
    oprofile \
    oprofileui-server \
    powertop \
    lttng-control \
    lttng-viewer"
#    sreadahead"
RDEPENDS_task-moblin-tools-profile_qemux86 += "valgrind"
RRECOMMENDS_task-moblin-tools-profile = "\
    kernel-module-oprofile"
RDEPENDS_task-moblin-tools-testapps = "\
    blktool \
    tslib-calibrate \
    tslib-tests \
    lrzsz \
    kexec-tools \
    alsa-utils-amixer \
    alsa-utils-aplay \
    owl-video \
    gst-meta-video \
    gst-meta-audio \
    xrestop \
    xwininfo \
    xprop \
    xvideo-tests"
 |