]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
IOzone: new package
authorgilles.talis@gmail.com <gilles.talis@gmail.com>
Mon, 25 Mar 2013 09:26:05 +0000 (09:26 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 5 May 2013 19:31:19 +0000 (21:31 +0200)
[Peter: lower case package name, strip trailing newline]
Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/iozone/Config.in [new file with mode: 0644]
package/iozone/iozone.mk [new file with mode: 0644]

index 3537de185f45a0d5b73ebe0e311b2eebdb84702d..79b6b8f138286cb76781a5270fc7c0f20d02479d 100644 (file)
@@ -23,6 +23,7 @@ source "package/dhrystone/Config.in"
 source "package/dstat/Config.in"
 source "package/dmalloc/Config.in"
 source "package/gdb/Config.in"
+source "package/iozone/Config.in"
 source "package/kexec/Config.in"
 source "package/latencytop/Config.in"
 source "package/lmbench/Config.in"
diff --git a/package/iozone/Config.in b/package/iozone/Config.in
new file mode 100644 (file)
index 0000000..5481ca1
--- /dev/null
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_IOZONE
+       bool "iozone"
+       depends on BR2_LARGEFILE
+       depends on BR2_USE_MMU # fork()
+       help
+         IOzone is a filesystem benchmark tool.
+         The benchmark generates and measures a variety of file operations
+
+         http://www.iozone.org/
+
+comment "IOzone requires a toolchain with LARGEFILE support"
+       depends on !BR2_LARGEFILE
diff --git a/package/iozone/iozone.mk b/package/iozone/iozone.mk
new file mode 100644 (file)
index 0000000..71c6840
--- /dev/null
@@ -0,0 +1,38 @@
+#############################################################
+#
+# IOZONE
+#
+#############################################################
+
+IOZONE_VERSION = 3_414
+IOZONE_SOURCE = iozone$(IOZONE_VERSION).tar
+IOZONE_SITE = http://www.iozone.org/src/current
+IOZONE_LICENSE = IOzone license (NO DERIVED WORKS ALLOWED)
+# IOzone license details can be found at:
+# http://www.iozone.org/docs/Iozone_License.txt
+
+ifeq ($(BR2_TOOLCHAIN_BUILDROOT)$(BR2_TOOLCHAIN_EXTERNAL_UCLIBC)$(BR2_TOOLCHAIN_CTNG_uClibc),y)
+# aio.h is not available on uClibc. Select "generic" target that does not use it.
+IOZONE_TARGET = generic
+else ifeq ($(BR2_powerpc),y)
+IOZONE_TARGET = linux-powerpc
+else ifeq ($(BR2_sparc),y)
+IOZONE_TARGET = linux-sparc
+else
+IOZONE_TARGET = linux
+endif
+
+define IOZONE_BUILD_CMDS
+       $(MAKE) $(TARGET_CONFIGURE_OPTS) $(IOZONE_TARGET) -C $(@D)/src/current
+endef
+
+define IOZONE_INSTALL_TARGET_CMDS
+       $(INSTALL) -D -m 755 $(@D)/src/current/iozone \
+               $(TARGET_DIR)/usr/bin/iozone
+endef
+
+define IOZONE_CLEAN_CMDS
+       $(MAKE) -C $(@D)/src/current clean
+endef
+
+$(eval $(generic-package))