1 config BR2_PACKAGE_STRESS_NG
3 depends on BR2_USE_MMU # fork()
4 # disabled on musl: stress-malloc.c needs mallopt() and M_MMAP_THRESHOLD
5 # disabled on uClibc: stress-aio.c needs aio.h
6 depends on BR2_TOOLCHAIN_USES_GLIBC
7 # perf.c needs PERF_COUNT_HW_REF_CPU_CYCLES
8 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
9 depends on !BR2_microblaze # keyutils
10 # fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2
12 depends on !BR2_STATIC_LIBS # keyutils
13 select BR2_PACKAGE_KEYUTILS # stress-key.c needs keyutils.h
14 select BR2_PACKAGE_ATTR # stress-xattr.c needs xattr.h
16 stress-ng will stress test a computer system in various
17 selectable ways. It was designed to exercise various physical
18 subsystems of a computer as well as the various operating
19 system kernel interfaces.
21 http://kernel.ubuntu.com/~cking/stress-ng/
23 comment "stress-ng needs a glibc toolchain w/ dynamic library, headers >= 3.3"
24 depends on !BR2_microblaze && !BR2_nios2
25 depends on BR2_USE_MMU
26 depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3 \
27 || !BR2_TOOLCHAIN_USES_GLIBC