2015-09-09 11:53:47 +02:00
|
|
|
config BR2_PACKAGE_STRESS_NG
|
|
|
|
bool "stress-ng"
|
|
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
# disabled on musl: stress-malloc.c needs mallopt() and M_MMAP_THRESHOLD
|
|
|
|
# disabled on uClibc: stress-aio.c needs aio.h
|
|
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
2015-09-14 09:43:45 +02:00
|
|
|
# perf.c needs PERF_COUNT_HW_REF_CPU_CYCLES
|
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
|
2015-09-09 11:53:47 +02:00
|
|
|
depends on !BR2_microblaze # keyutils
|
2016-05-21 09:22:17 +02:00
|
|
|
# fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2
|
|
|
|
depends on !BR2_nios2
|
2015-09-09 11:53:47 +02:00
|
|
|
depends on !BR2_STATIC_LIBS # keyutils
|
|
|
|
select BR2_PACKAGE_KEYUTILS # stress-key.c needs keyutils.h
|
|
|
|
select BR2_PACKAGE_ATTR # stress-xattr.c needs xattr.h
|
|
|
|
help
|
|
|
|
stress-ng will stress test a computer system in various
|
|
|
|
selectable ways. It was designed to exercise various physical
|
|
|
|
subsystems of a computer as well as the various operating
|
|
|
|
system kernel interfaces.
|
|
|
|
|
|
|
|
http://kernel.ubuntu.com/~cking/stress-ng/
|
|
|
|
|
2015-09-14 09:43:45 +02:00
|
|
|
comment "stress-ng needs a glibc toolchain w/ dynamic library, headers >= 3.3"
|
2016-05-21 09:22:17 +02:00
|
|
|
depends on !BR2_microblaze && !BR2_nios2
|
2015-09-09 11:53:47 +02:00
|
|
|
depends on BR2_USE_MMU
|
2015-09-14 09:43:45 +02:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3 \
|
2015-09-09 11:53:47 +02:00
|
|
|
|| !BR2_TOOLCHAIN_USES_GLIBC
|