1config BR2_PACKAGE_BUSTLE 2 bool "bustle" 3 depends on BR2_USE_WCHAR # libglib2 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 5 depends on BR2_USE_MMU # libglib2 6 depends on BR2_PACKAGE_DBUS # runtime 7 select BR2_PACKAGE_LIBPCAP 8 select BR2_PACKAGE_LIBGLIB2 9 help 10 Bustle is a better dbus-monitor! It records and draws 11 sequence diagrams of D-Bus activity, showing signal 12 emissions, method calls and their corresponding returns, 13 with timestamps for each individual event and the duration 14 of each method call. This can help you check for unwanted 15 D-Bus traffic, and pinpoint why your D-Bus-based application 16 isn't performing as well as you like. 17 18 This only installs the command line bustle-pcap tool, not 19 the graphical viewer. 20 21 https://gitlab.freedesktop.org/bustle/bustle/ 22 23comment "bustle needs a toolchain w/ wchar, threads" 24 depends on BR2_USE_MMU 25 depends on BR2_PACKAGE_DBUS 26 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 27