diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-01-22 15:55:55 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-01-22 15:56:57 +0100 |
commit | db7a831da184e2fa2ed1f43ef528b81d2023d986 (patch) | |
tree | 757c0d42bee753aec590cf8f9e3d5461ec94714a /package/bustle/Config.in | |
parent | 045603fd65e73b4bcbec49e5d6e3eb052514cd18 (diff) | |
download | buildroot-novena-db7a831da184e2fa2ed1f43ef528b81d2023d986.tar.gz buildroot-novena-db7a831da184e2fa2ed1f43ef528b81d2023d986.zip |
package: add bustle dbus monitor package
Only builds the capture tool, not the (host) graphical viewer.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/bustle/Config.in')
-rw-r--r-- | package/bustle/Config.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/bustle/Config.in b/package/bustle/Config.in new file mode 100644 index 000000000..2a2a2c1d6 --- /dev/null +++ b/package/bustle/Config.in @@ -0,0 +1,22 @@ +config BR2_PACKAGE_BUSTLE + bool "bustle" + select BR2_PACKAGE_LIBPCAP + select BR2_PACKAGE_LIBGLIB2 + depends on BR2_USE_WCHAR # libglib2 + depends on BR2_PACKAGE_DBUS # runtime + help + Bustle is a better dbus-monitor! It records and draws + sequence diagrams of D-Bus activity, showing signal + emissions, method calls and their corresponding returns, + with timestamps for each individual event and the duration + of each method call. This can help you check for unwanted + D-Bus traffic, and pinpoint why your D-Bus-based application + isn't performing as well as you like. + + This only installs the command line bustle-pcap tool, not + the graphical viewer. + + http://www.willthompson.co.uk/bustle/ + +comment "bustle requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR |