f3b30d4b54
Do the same as commit "12c01079bd package/stress-ng: bump to version 0.13.05" did for 2022.02 but without the version bump. The project URL returns 404 error because: Quoting Coling King: "Unfortunately when I left Canonical last week they removed my tarballs" So use github and update hash. Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com> Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> [Ricardo: do not bump the version. There will be no version clash at sources.buildroot.net since the file format changed] Signed-off-by: Ricardo Martincoski <ricardo.martincoski@datacom.com.br> Cc: Romain Naour <romain.naour@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
21 lines
718 B
Plaintext
21 lines
718 B
Plaintext
config BR2_PACKAGE_STRESS_NG
|
|
bool "stress-ng"
|
|
depends on BR2_USE_MMU # fork()
|
|
# perf.c needs PERF_COUNT_HW_REF_CPU_CYCLES
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
|
|
# fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 and ARC
|
|
depends on !BR2_nios2
|
|
depends on !BR2_arc
|
|
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.
|
|
|
|
https://github.com/ColinIanKing/stress-ng
|
|
|
|
comment "stress-ng needs a toolchain w/ headers >= 3.3"
|
|
depends on !BR2_nios2 && !BR2_arc
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
|