2022-05-11 02:19:47 +02:00
|
|
|
comment "cpulimit needs a toolchain w/ threads, does not build open openrisc with musl"
|
|
|
|
depends on BR2_USE_MMU
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || (BR2_or1k && BR2_TOOLCHAIN_USES_MUSL)
|
|
|
|
|
2022-05-05 19:22:20 +02:00
|
|
|
config BR2_PACKAGE_CPULIMIT
|
|
|
|
bool "cpulimit"
|
|
|
|
depends on BR2_USE_MMU # fork()
|
2022-05-08 01:10:46 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2022-05-11 02:19:47 +02:00
|
|
|
depends on !(BR2_or1k && BR2_TOOLCHAIN_USES_MUSL)
|
2022-05-05 19:22:20 +02:00
|
|
|
help
|
|
|
|
Cpulimit is a tool which limits the CPU usage of a process
|
|
|
|
(expressed in percentage, not in CPU time)
|
|
|
|
|
|
|
|
https://github.com/opsengine/cpulimit
|