1246179d2e
- Enable for uClibc, which is supported now. - Keep microblaze, nios2 and arc restrictions, since it was not possible to test on those architectures (no hardware available). - Keep musl restriction, since it was possible to compile the code (with some patches) but it failed at run time with Cannot set scheduler: errno=38 (Function not implemented) Signed-off-by: Carlos Santos <casantos@datacom.com.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
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
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
|
# perf.c needs PERF_COUNT_HW_REF_CPU_CYCLES
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
|
|
depends on !BR2_microblaze # keyutils
|
|
# fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 and ARC
|
|
depends on !BR2_nios2
|
|
depends on !BR2_arc
|
|
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/
|
|
|
|
comment "stress-ng needs a glibc or uClibc toolchain w/ dynamic library, headers >= 3.3"
|
|
depends on !BR2_microblaze && !BR2_nios2 && !BR2_arc
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3 \
|
|
|| BR2_TOOLCHAIN_USES_MUSL
|