diff options
author | Qian Lei <qianl.fnst@cn.fujitsu.com> | 2014-11-27 17:19:22 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-09 11:18:42 +0100 |
commit | af9aee6804dd56d45be1d83d612bfd4b40874534 (patch) | |
tree | 3522c0e5abaad03108baca07ce51dd85fee838b6 /meta-oe/recipes-extended | |
parent | 299b1beda31cbae9802052a967d66d57c100eb02 (diff) | |
download | meta-openembedded-af9aee6804dd56d45be1d83d612bfd4b40874534.tar.gz |
tiptop: Add new recipe
Tiptop is a performance monitoring tool for Linux. It provides a
dynamic real-time view of the tasks running in the system. Tiptop
is very similar to the top utility, but most of the information
displayed comes from hardware counters.
Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r-- | meta-oe/recipes-extended/tiptop/tiptop_2.2.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/tiptop/tiptop_2.2.bb b/meta-oe/recipes-extended/tiptop/tiptop_2.2.bb new file mode 100644 index 000000000..a803e26af --- /dev/null +++ b/meta-oe/recipes-extended/tiptop/tiptop_2.2.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "Hardware performance monitoring counters" | ||
2 | HOMEPAGE = "http://tiptop.gforge.inria.fr/" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
5 | DEPENDS = "ncurses libxml2" | ||
6 | |||
7 | SRC_URI = "http://tiptop.gforge.inria.fr/releases/${BP}.tar.gz" | ||
8 | SRC_URI[md5sum] = "74255a29acf44569db021b080ad3e3f7" | ||
9 | SRC_URI[sha256sum] = "965cb99b16cb59df78363d83b62877ce8501b0aac1116a86bed8a16aa96b171d" | ||
10 | |||
11 | inherit autotools-brokensep | ||
12 | EXTRA_OECONF = "CFLAGS="$CFLAGS -I${STAGING_INCDIR}/libxml2"" | ||
13 | COMPATIBLE_HOST = "(i.86|x86_64|arm|powerpc).*-linux" | ||
14 | |||
15 | do_configure_prepend () { | ||
16 | # Two bugs in configure.ac when cross-compiling. | ||
17 | # 1. The path of libxml2. Specify it in EXTRA_OECONF. | ||
18 | # 2. hw's value on other platforms. Replace it if the target is | ||
19 | # not i*86/x86_64. | ||
20 | if ( echo "${TARGET_ARCH}" | grep -q -e 'i.86' -e 'x86_64' ); then | ||
21 | sed -i 's= -I/usr/include/libxml2==' ${S}/configure.ac | ||
22 | else | ||
23 | sed -i 's/hw=`uname -m`/hw="unknown"/' ${S}/configure.ac | ||
24 | sed -i 's= -I/usr/include/libxml2==' ${S}/configure.ac | ||
25 | fi | ||
26 | } | ||