mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
9
package/stress/Config.in
Normal file
9
package/stress/Config.in
Normal file
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_STRESS
|
||||
bool "stress"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
A deliberately simple workload generator for POSIX systems.
|
||||
It imposes a configurable amount of CPU, memory, I/O, and
|
||||
disk stress on the system.
|
||||
|
||||
http://people.seas.harvard.edu/~apw/stress/
|
||||
2
package/stress/stress.hash
Normal file
2
package/stress/stress.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 057e4fc2a7706411e1014bf172e4f94b63a12f18412378fca8684ca92408825b stress-1.0.4.tar.gz
|
||||
25
package/stress/stress.mk
Normal file
25
package/stress/stress.mk
Normal file
@@ -0,0 +1,25 @@
|
||||
################################################################################
|
||||
#
|
||||
# stress
|
||||
#
|
||||
################################################################################
|
||||
|
||||
STRESS_VERSION = 1.0.4
|
||||
STRESS_SITE = http://people.seas.harvard.edu/~apw/stress
|
||||
STRESS_LICENSE = GPL-2.0+
|
||||
STRESS_LICENSE_FILES = COPYING
|
||||
|
||||
# Stress is linked statically if the --enable-static is specified.
|
||||
# However, this option is always specified in the global
|
||||
# SHARED_STATIC_LIBS_OPTS to tell packages to build static libraries,
|
||||
# if supported.
|
||||
#
|
||||
# If the BR2_STATIC_LIBS is not defined, we have to specify
|
||||
# --disable-static explicitly to get stress linked dynamically.
|
||||
#
|
||||
# Also, disable documentation by undefining makeinfo
|
||||
STRESS_CONF_OPTS = \
|
||||
$(if $(BR2_STATIC_LIBS),,--disable-static) \
|
||||
MAKEINFO=:
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user