From patchwork Sat Apr 28 16:59:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 155674 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 23DB3B6FC8 for ; Sun, 29 Apr 2012 02:59:55 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DB39390887; Sat, 28 Apr 2012 16:59:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 88-ynIOixdCd; Sat, 28 Apr 2012 16:59:49 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id B51809059C; Sat, 28 Apr 2012 16:59:48 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 6FCC08F753 for ; Sat, 28 Apr 2012 16:59:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5690A9059C for ; Sat, 28 Apr 2012 16:59:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uWxIPxkyI9zL for ; Sat, 28 Apr 2012 16:59:46 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by whitealder.osuosl.org (Postfix) with ESMTPS id EACAE9058A for ; Sat, 28 Apr 2012 16:59:45 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1SOAza-0001sx-Oi; Sat, 28 Apr 2012 18:59:44 +0200 Received: from arnout by vandecaa-laptop with local (Exim 4.77) (envelope-from ) id 1SOAzZ-0003FM-4b; Sat, 28 Apr 2012 18:59:29 +0200 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@busybox.net Date: Sat, 28 Apr 2012 18:59:25 +0200 Message-Id: <1335632365-12407-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 1.7.10 Subject: [Buildroot] [PATCH resend] stress: new package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/Config.in | 1 + package/stress/Config.in | 8 ++++++++ package/stress/stress.mk | 13 +++++++++++++ 3 files changed, 22 insertions(+) \ No newline at end of file diff --git a/package/Config.in b/package/Config.in index a310146..9dd2158 100644 --- a/package/Config.in +++ b/package/Config.in @@ -35,6 +35,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" diff --git a/package/stress/Config.in b/package/stress/Config.in new file mode 100644 index 0000000..b092b03 --- /dev/null +++ b/package/stress/Config.in @@ -0,0 +1,8 @@ +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/ diff --git a/package/stress/stress.mk b/package/stress/stress.mk new file mode 100644 index 0000000..a64a0d4 --- /dev/null +++ b/package/stress/stress.mk @@ -0,0 +1,13 @@ +############################################################# +# +# 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_SOURCE = stress-$(STRESS_VERSION).tar.gz + +$(eval $(call AUTOTARGETS))