[Buildroot] [PATCH] V2: Add package bonnie++

Martin Hicks mort at bork.org
Tue Feb 8 21:42:19 UTC 2011


On Mon, Feb 07, 2011 at 06:16:10PM +0100, Peter Korsgaard wrote:
> >>>>> "Martin" == Martin Hicks <mort at bork.org> writes:
> 
>  Martin> A good filesystem performance benchmark program.
>  Martin> Fixed up a few things requested by reviewers.
> 
> Bonnie++ is implemented in C++, right? If so, you need to depend on
> LIBSTDCPP (and add a comment statement if it isn't available) - See
> E.G. package/iperf/Config.in for an example.

Okay.  here's the updated patch:


>From 6b6e22d5a981069019db09fa68df5a7de0c892f4 Mon Sep 17 00:00:00 2001
From: Martin Hicks <mort at bork.org>
Date: Mon, 31 Jan 2011 15:32:06 -0500
Subject: [PATCH] Add package bonnie++

A good filesystem performance benchmark program

Signed-off-by: Martin Hicks <mort at bork.org>
---
 package/Config.in        |    1 +
 package/bonnie/Config.in |   10 ++++++++++
 package/bonnie/bonnie.mk |   17 +++++++++++++++++
 3 files changed, 28 insertions(+), 0 deletions(-)
 create mode 100644 package/bonnie/Config.in
 create mode 100644 package/bonnie/bonnie.mk

diff --git a/package/Config.in b/package/Config.in
index 631bb80..49859b1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -17,6 +17,7 @@ source "package/xz/Config.in"
 endmenu
 
 menu "Debugging, profiling and benchmark"
+source "package/bonnie/Config.in"
 source "package/dhrystone/Config.in"
 source "package/dmalloc/Config.in"
 source "package/kexec/Config.in"
diff --git a/package/bonnie/Config.in b/package/bonnie/Config.in
new file mode 100644
index 0000000..926d917
--- /dev/null
+++ b/package/bonnie/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_BONNIE
+	bool "bonnie++"
+	depends on BR2_INSTALL_LIBSTDCPP
+	help
+	  Filesystem tester
+
+	  http://www.coker.com.au/bonnie++/
+
+comment "bonnie requires a toolchain with C++ support enabled"
+	depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/bonnie/bonnie.mk b/package/bonnie/bonnie.mk
new file mode 100644
index 0000000..87f5fbc
--- /dev/null
+++ b/package/bonnie/bonnie.mk
@@ -0,0 +1,17 @@
+#
+# bonnie++
+#
+BONNIE_VERSION = 1.03e
+BONNIE_SOURCE = bonnie++-$(BONNIE_VERSION).tgz
+BONNIE_SITE = http://www.coker.com.au/bonnie++/
+
+define BONNIE_INSTALL_TARGET_CMDS
+	install -D -m 755 $(@D)/bonnie++ $(TARGET_DIR)/usr/sbin/bonnie++
+	install -D -m 755 $(@D)/zcav $(TARGET_DIR)/usr/sbin/zcav
+endef
+
+define BONNIE_UNINSTALL_TARGET_CMDS
+	rm -f $(TARGET_DIR)/usr/sbin/bonnie++ $(TARGET_DIR)/usr/sbin/zcav
+endef
+
+$(eval $(call AUTOTARGETS,package,bonnie))
-- 
1.5.6.5


-- 
Martin Hicks P.Eng.    |      mort at bork.org
Bork Consulting Inc.   |  +1 (613) 266-2296


More information about the buildroot mailing list