diff options
author | Soren Brinkmann <soren.brinkmann@xilinx.com> | 2015-08-28 14:03:39 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-09-08 16:18:34 +0200 |
commit | b996aaab173126c9266fe35ac7fc1caab8bb20c4 (patch) | |
tree | 3d7d8f5f616b9a49904a17060cddd0e20d69c1d2 /meta-oe | |
parent | 26ea5cbea7aeff877a2ea45d0723e77df8e69b84 (diff) | |
download | meta-openembedded-b996aaab173126c9266fe35ac7fc1caab8bb20c4.tar.gz |
Add analyze-suspend
Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-benchmark/analyze-suspend/analyze-suspend_git.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/analyze-suspend/analyze-suspend_git.bb b/meta-oe/recipes-benchmark/analyze-suspend/analyze-suspend_git.bb new file mode 100644 index 000000000..d97ff0a5b --- /dev/null +++ b/meta-oe/recipes-benchmark/analyze-suspend/analyze-suspend_git.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "Analyze Suspend" | ||
2 | DESCRIPTION = "analyze-suspend is a tool for system developers to visualize \ | ||
3 | the activity between suspend and resume, allowing them to identify \ | ||
4 | inefficiencies and bottlenecks." | ||
5 | HOMEPAGE = "https://01.org/suspendresume" | ||
6 | LICENSE = "GPLv2" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e" | ||
8 | |||
9 | # Apart from the listed RDEPENDS, analyze-suspend depends on some features | ||
10 | # provided by the kernel. These options are: | ||
11 | # - CONFIG_PM_DEBUG=y | ||
12 | # - CONFIG_PM_SLEEP_DEBUG=y | ||
13 | # - CONFIG_FTRACE=y | ||
14 | # - CONFIG_FUNCTION_TRACER=y | ||
15 | # - CONFIG_FUNCTION_GRAPH_TRACER=y | ||
16 | |||
17 | RDEPENDS_${PN} += "python-core python-datetime python-stringold" | ||
18 | |||
19 | PV = "3.2+gitr${SRCPV}" | ||
20 | SRCREV = "bce3cbec43bc2ce7a8c79b210314dd9d9ac1010b" | ||
21 | SRC_URI = "git://github.com/01org/suspendresume.git;protocol=https" | ||
22 | S = "${WORKDIR}/git" | ||
23 | |||
24 | do_install() { | ||
25 | install -Dm 0755 analyze_suspend.py ${D}${bindir}/analyze_suspend.py | ||
26 | install -Dm 0644 README ${D}${docdir}/analyze-suspend/README | ||
27 | } | ||
28 | |||
29 | BBCLASSEXTEND = "native" | ||