Commit a90617b6 authored by Arnout Vandecappelle's avatar Arnout Vandecappelle Committed by Peter Korsgaard
Browse files

stress: new package

parent 4205dbd9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@ source "package/netperf/Config.in"
source "package/oprofile/Config.in"
source "package/rt-tests/Config.in"
source "package/strace/Config.in"
source "package/stress/Config.in"
source "package/whetstone/Config.in"
source "package/valgrind/Config.in"
source "package/pv/Config.in"
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_STRESS
	bool "stress"
	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://weather.ou.edu/~apw/projects/stress/
+22 −0
Original line number Diff line number Diff line
Remove largefile

Otherwise it doesn't compile in uClibc without largefile.

If the toolchain does support largefile, it will still work on large files
anyway.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
Upstream status: mail sent to apw@rossby.metr.ou.edu
---
diff -rup stress-1.0.4.orig/src/Makefile.am stress-1.0.4/src/Makefile.am
--- stress-1.0.4.orig/src/Makefile.am	2009-12-03 02:04:05.000000000 +0100
+++ stress-1.0.4/src/Makefile.am	2012-05-04 23:09:48.229842463 +0200
@@ -1,7 +1,5 @@
 MAINTAINERCLEANFILES = Makefile.in
 
-AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-
 bin_PROGRAMS = stress
 stress_SOURCES = stress.c
 stress_MANS = stress.1
+13 −0
Original line number Diff line number Diff line
#############################################################
#
# stress - a workload generator
#
# http://weather.ou.edu/~apw/projects/stress/
#
#############################################################

STRESS_VERSION = 1.0.4
STRESS_SITE    = http://weather.ou.edu/~apw/projects/stress
STRESS_AUTORECONF = YES

$(eval $(call AUTOTARGETS))