2012-01-31 20:40:03 +01:00
|
|
|
config BR2_PACKAGE_LTTNG_TOOLS
|
|
|
|
bool "lttng-tools"
|
|
|
|
select BR2_PACKAGE_LIBURCU
|
|
|
|
select BR2_PACKAGE_POPT
|
2013-07-04 00:04:48 +02:00
|
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
2012-12-17 02:32:02 +01:00
|
|
|
# liburcu only works on some architectures and requires thread support
|
2012-03-20 09:17:46 +01:00
|
|
|
depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_powerpc || BR2_x86_64
|
2013-05-12 21:26:44 +02:00
|
|
|
depends on BR2_LARGEFILE
|
2013-07-04 00:04:48 +02:00
|
|
|
depends on BR2_USE_WCHAR # util-linux
|
2012-12-17 02:32:02 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2012-01-31 20:40:03 +01:00
|
|
|
help
|
|
|
|
Userspace utilities for the LTTng 2.0 tracing
|
|
|
|
infrastructure.
|
|
|
|
|
|
|
|
Those utilities are required on the target system to start
|
|
|
|
and stop tracing sessions. Analysis of the trace can be done
|
|
|
|
on the host machine using the babeltrace utility. This
|
|
|
|
utility is automatically built by Buildroot in
|
|
|
|
$(O)/host/usr/bin/babeltrace, as a dependency of
|
|
|
|
lttng-tools. However, there is also a lttng-babeltrace
|
|
|
|
package for the target, if babeltrace on the target is
|
|
|
|
interesting.
|
|
|
|
|
2012-02-04 15:48:46 +01:00
|
|
|
If userspace tracing is desired, you need to enable
|
|
|
|
lttng-libust.
|
|
|
|
|
2012-01-31 20:40:03 +01:00
|
|
|
http://lttng.org
|
2012-12-17 02:32:02 +01:00
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "lttng-tools needs a toolchain w/ largefile, threads, wchar"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_powerpc || BR2_x86_64
|
2013-07-04 00:04:48 +02:00
|
|
|
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_USE_WCHAR
|