mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
DTUI is a small TUI for introspecting the state of the system/session D-Bus. It shows current services and lets you introspect objects and their interfaces. This package is built with Rust/Cargo. Upstream: https://github.com/Troels51/dtui License: MIT Signed-off-by: Christopher Obbard <obbardc@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
610 B
Plaintext
19 lines
610 B
Plaintext
config BR2_PACKAGE_DTUI
|
|
bool "dtui"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
|
|
depends on BR2_USE_MMU # dbus
|
|
select BR2_PACKAGE_DBUS # runtime
|
|
select BR2_PACKAGE_HOST_RUSTC
|
|
help
|
|
dtui is a minimal TUI for introspecting the state of the
|
|
system/session D-Bus. It shows current services and lets
|
|
you introspect objects and their interfaces.
|
|
|
|
https://github.com/Troels51/dtui
|
|
|
|
comment "dtui needs a toolchain w/ threads"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|