|
@@ -1,9 +1,14 @@
|
|
config BR2_PACKAGE_HTOP
|
|
config BR2_PACKAGE_HTOP
|
|
bool "htop"
|
|
bool "htop"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
+ depends on !BR2_STATIC_LIBS # dlopen()
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_NCURSES
|
|
help
|
|
help
|
|
htop is an interactive text-mode process viewer for Linux.
|
|
htop is an interactive text-mode process viewer for Linux.
|
|
It aims to be a better top.
|
|
It aims to be a better top.
|
|
|
|
|
|
https://htop.dev/
|
|
https://htop.dev/
|
|
|
|
+
|
|
|
|
+comment "htop needs a toolchain w/ dynamic library"
|
|
|
|
+ depends on BR2_USE_MMU
|
|
|
|
+ depends on BR2_STATIC_LIBS
|