48bd50287f
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter b in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
957 B
Plaintext
27 lines
957 B
Plaintext
config BR2_PACKAGE_BUSTLE
|
|
bool "bustle"
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on BR2_USE_MMU # libglib2
|
|
depends on BR2_PACKAGE_DBUS # runtime
|
|
select BR2_PACKAGE_LIBPCAP
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
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 needs a toolchain w/ wchar, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_DBUS
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|